[perl #59928] Calling methods in many-jointed classes doesn't work

2008-11-04 Thread [EMAIL PROTECTED] via RT
On Thu Oct 16 10:22:06 2008, masak wrote: > Moritz (>), Carl (>>): > >> Rakudo r31994 can call methods on classes without :: in them, but not > >> on classes having them. > >> > >> $ perl6 -e 'class A { method foo { say "OH HAI" } }; A.new.foo' > >> OH HAI > >> > >> $ perl6 -e 'class A::B { method

Re: [perl #59928] Calling methods in many-jointed classes doesn't work

2008-10-16 Thread Carl Mäsak
Moritz (>), Carl (>>): >> Rakudo r31994 can call methods on classes without :: in them, but not >> on classes having them. >> >> $ perl6 -e 'class A { method foo { say "OH HAI" } }; A.new.foo' >> OH HAI >> >> $ perl6 -e 'class A::B { method foo { say "OH HAI" } }; A::B.new.foo' >> Method 'foo' not

[perl #59928] Calling methods in many-jointed classes doesn't work

2008-10-16 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #59928] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=59928 > Rakudo r31994 can call methods on classes without :: in them, but not on classes having