On Sat Feb 14 21:22:35 2009, bacek wrote: > Actual summary should be "CATCH blocks eats return values from subs". > > $ ../../parrot perl6.pbc -e 'sub bar { 1; CATCH { } }; say bar()' > Null PMC access in isa()
Note that it seems to be the implicit return that's a problem: 01:00 <[Coke]> rakudo: sub bar { return 1; CATCH { } }; say bar() 01:00 <p6eval> rakudo 549d2a: OUTPUT«1» -- Will "Coke" Coleda