Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove outdated test
  • Loading branch information
moritz committed Aug 26, 2015
1 parent 44d375f commit 43b86f4
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions S03-operators/context.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 38;
plan 37;

# L<S03/List prefix precedence/The list contextualizer>

Expand Down Expand Up @@ -111,12 +111,4 @@ is((@).push(42,43), '42 43', 'Anonymous @ variable can be pushed');
is $c, 4, '@$var coercion';
}

#?niecza skip "Invalid hard reference syntax"
{
my @a = <a b c d>;
my $c = 0;
$c++ for $@a;
is $c, 1, '$@var itemization'
}

# vim: ft=perl6

0 comments on commit 43b86f4

Please sign in to comment.