On Wed Jan 14 14:02:17 2009, publiustemp-perl6interna...@yahoo.com wrote: > I tried to implement "plan *" for 'no_plan' and this is the minimal > test case: > > perl6 $ perl6 -e 'my $plan = *; say $plan.isa(Whatever)' > Method 'isa' not found for invocant of class 'Whatever' > Ah yes, Whatever was wrongly inheriting from Object, not Any (as S02 says it should), and thus didn't get the .isa helper method declared. Fixed in git 23e8e02 and test added in S02-builtin-datatypes/whatever.t.
Thanks, Jonathan