On Fri Aug 14 06:53:05 2009, masak wrote: > $ svn info # Parrot > [...] > Revision: 40543 > > $ git show # Rakudo > commit 0d4fe08d2e6f249211a33a8f9b122599fadbe862 > > $ perl6 -e 'my $x = "\x[5ea]\x[5ea]"; $x++; say $x.perl' > no ICU lib loaded > in Main (<unknown>:1) > > $ perl6 -e 'my $x = "\x[5ea]\x[5ea]"; $x++; say try { $x.perl }' > Null PMC access in type() > in Main (<unknown>:1) > > $ perl6 -e 'my $x = "\x[5ea]\x[5ea]"; $x++; my $y = try { $x.perl }' > Null PMC access in isa() > in Main (<unknown>:1)
Oh, and I should add that this bug causes t/spec/S03-operators/autoincrement- range.rakudo to die when trying to print diagnostic information about the TODO'd test 33. $ perl6 t/spec/S03-operators/autoincrement-range.rakudo 1..96 # Tests for 'A' .. 'Z' ok 1 - 'ZZ'++ is 'AAA' ok 2 - 'AAA'-- fails ok 3 - '0A'++ is '0B' [...] # Tests for 'א' .. 'ת' (Hebrew) not ok 33 - 'תת'++ is 'אאא'# TODO Hebrew Null PMC access in isa() in sub Test::is (Test.pm:67) called from Main (t/spec/S03-operators/autoincrement-range.rakudo:93)