Project

General

Profile

Backport #3342 ยป bug.rb

toy exemple to reproduce the bug - frihd (Lucas DiCioccio), 05/25/2010 10:41 PM

 

class A
attr_writer :b
alias :c :b=
end

A.new.b = :foo #=> OK
A.new.c :foo #=> OK
A.new.b = :foo, :bar #=> OK
A.new.c :foo, :bar #=> KO

    (1-1/1)