Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
RT #114090, declaration in interpolation
  • Loading branch information
moritz committed Jan 4, 2013
1 parent 6ec4397 commit 1c992e3
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 157;
plan 158;

my $foo = "FOO";
my $bar = "BAR";
Expand Down Expand Up @@ -590,6 +590,9 @@ Hello, World
# RT #90124
eval_dies_ok q["@a<"], 'unclosed quote after array variable is an error';
# RT #114090
is "foo $( my $x = 3 + 4; "bar" ) baz", 'foo bar baz', 'declaration in interpolation';
done;
# vim: ft=perl6

0 comments on commit 1c992e3

Please sign in to comment.