On Wed Sep 16 02:56:54 2009, moritz wrote:
> Thanks for the ticket, it's a very good catch and analysis.
> I have some small comments on it:
>
> Bruce Gray (via RT) wrote:
> > # New Ticket Created by Bruce Gray
> > # Please include the string: [perl #69160]
> > # in the subject line of all future correspondence about this issue.
> > # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=69160 >
> >
> >
> > Consider these two classes, both faulty in the same way:
> > class B0rk { say $.a };
> > class Chef { say $.b };
Failure mode changed, and is now more consistent, but worse.
$ ./perl6 -e 'class B0rk { say $.a };'
Null PMC access in find_method('a')
$ ./perl6 -e 'class Chef { say $.b };'
Null PMC access in find_method('b')
--
Will "Coke" Coleda