The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/pugs

use v6;
use Test;

plan 1;

my $dollar_underscore;
{
    $_ = 42;
    {
        $dollar_underscore = $_;
    }
}

is $dollar_underscore, 42, 'bare blocks containing $_ work correctly';