On Fri, May 08, 2009 at 04:20:28AM -0700, jn...@jnthn.net via RT wrote:
> On Fri Dec 12 13:54:14 2008, masak wrote:
> > rakudo: sub foo { }; sub foo {}; say "ok";
> > OUTPUT[ok]
> > peters: nice one. that's a bug.
> > * masak submits rakudobug
>
> It warns now. Can't close this ticket since we
On Fri Dec 12 13:54:14 2008, masak wrote:
> rakudo: sub foo { }; sub foo {}; say "ok";
> OUTPUT[ok]
> peters: nice one. that's a bug.
> * masak submits rakudobug
It warns now. Can't close this ticket since we don't do anything for
re-defined methods just yet, and that ticket got merged into th
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #57788]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=57788 >
r30166:
$ ./perl6 -e 'sub x{};sub x{1};say x'
1
$ ./perl6 -e 'class A{method x{1};method