On Mon, Jan 12, 2009 at 12:57:44PM -0800, publiustemp-perl6compil...@yahoo.com (via RT) wrote: > This is blocking me implementing a simple 'plan "no_plan"' for tests. > > $ perl6 -e 'my $foo = "Goodbye cruel world!"; END { say $foo }' > Scope not found for PAST::Var '$foo' in
Confirmed -- there are still issues with lexicals in a variety of control blocks. However, the easy workaround is to use "our" variables instead of "my" if at all possible. Pm