On Fri Jan 09 14:17:02 2009, masak wrote: > <masak> rakudo: my Any $x .= new; say $x.values > <p6eval> rakudo 35320: OUTPUT«Method '!flatten' not found for invocant > of class 'Any' [...] > * masak submits rakudobug
Now "fixed" in r35392, although I'm not sure what the correct behavior should be. $ ./parrot perl6.pbc > my Any $x .= new; say $x.values; Any<0x81ecdb8> > Same goes for Undef, which should arguably also be able to output > .values, I think. Perl 6 doesn't have C<Undef>. Assigning ticket to moritz++ to make sure we have a test for Any.values. Thanks, Pm