Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
RT #85506, interpolation followed by whispace and brackets
  • Loading branch information
moritz committed Jan 4, 2013
1 parent 6d4ae89 commit b741f8d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion S02-literals/quoting.t
@@ -1,6 +1,6 @@
use v6;
use Test;
plan 155;
plan 156;

my $foo = "FOO";
my $bar = "BAR";
Expand Down Expand Up @@ -581,6 +581,12 @@ Hello, World
is "$foo>>", "FOO>>", 'quoting and >> (RT 75320, 2)';
}
# RT #85506
{
my $a = 42;
is "$a [<file>]", '42 [<file>]', 'can handle [ after whitespace after var interpolation';
}
done;
# vim: ft=perl6

0 comments on commit b741f8d

Please sign in to comment.