Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
test for RT #73144, "string".new
  • Loading branch information
moritz committed Oct 1, 2011
1 parent 0629400 commit 24f09e8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion S02-literals/string-interpolation.t
@@ -1,6 +1,6 @@
use v6;
use Test;
plan 10;
plan 11;

# L<S02/Closures/"A bare closure also interpolates in double-quotish context.">

Expand Down Expand Up @@ -45,6 +45,11 @@ line 4
is $rt65538_in, $rt65538_out, 'interpolation does not trim newlines';
}

#?rakudo skip 'RT #73144'
{
is 'something'.new, '', '"string literal".new just creates an empty string';
}

done;

# vim: ft=perl6

0 comments on commit 24f09e8

Please sign in to comment.