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
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
# 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