Skip to content

Commit 4f9bd38

Browse files
committed
Correct a test that was out of line with STD.
Delimiters to take precedence over escape sequences.
1 parent faee08f commit 4f9bd38

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

S02-literals/misc-interpolation.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ is('$world @list[] %hash{} &func()', '$world @list[] %hash{} &func()', 'single q
6363
is("Hello $world!", "Hello World!", "! is not a part of var names");
6464
sub list_count (*@args) { +@args }
6565
is(list_count("@list[]"), 1, 'quoted interpolation gets string context');
66-
#?niecza todo 'apparently curly brace delimiters DO interfere with closure interpolation'
67-
is(qq{a{chr 98}c}, 'abc', "curly brace delimiters don't interfere with closure interpolation");
66+
is(qq{a{chr 98}c}, 'a{chr 98}c', "curly brace delimiters interfere with closure interpolation");
6867

6968
# Quoting constructs
7069
# The next test will always succeed, but if there's a bug it probably

0 commit comments

Comments
 (0)