Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
RT #90124, unclosed quote after array variable is an error
  • Loading branch information
moritz committed Jan 4, 2013
1 parent b741f8d commit 472b0b8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion S02-literals/quoting.t
@@ -1,6 +1,6 @@
use v6;
use Test;
plan 156;
plan 157;

my $foo = "FOO";
my $bar = "BAR";
Expand Down Expand Up @@ -587,6 +587,9 @@ Hello, World
is "$a [<file>]", '42 [<file>]', 'can handle [ after whitespace after var interpolation';
}
# RT #90124
eval_dies_ok q["@a<"], 'unclosed quote after array variable is an error';
done;
# vim: ft=perl6

0 comments on commit 472b0b8

Please sign in to comment.