1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#!/usr/bin/perl
use v5.14;
use warnings;
use Test2::V0;
use Future;
use Future::AsyncAwait;
# await inside map
{
my $ok = !eval q{
async sub with_map
{
map {
await $_[0];
} 1 .. 3
}
};
my $e = $@;
ok( $ok, 'await in map fails to compile' );
$ok and like( $e, qr/^await is not allowed inside map /, '' );
}
# await inside grep
{
my $ok = !eval q{
async sub with_grep
{
grep {
await $_[0];
} 1 .. 3
}
};
my $e = $@;
ok( $ok, 'await in grep fails to compile' );
$ok and like( $e, qr/^await is not allowed inside grep /, '' );
}
done_testing;
|