Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct needless backslashing in interpolation
  • Loading branch information
lizmat committed Jul 5, 2015
1 parent 21b7ed5 commit 4705fc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions S03-operators/assign.t
Expand Up @@ -127,9 +127,9 @@ plan 303;
is($a,1,"'\$a' is '1'?: (\$,\$,\$) = 1 .. 3");
is($b,2,"'\$b' is '2'?: (\$,\$,\$) = 1 .. 3");
is($c,3,"'\$c' is '3'?: (\$,\$,\$) = 1 .. 3");
is(@a,'1 2 3',"'{\@a}' is '1 2 3'?: \@a = 1 .. 3");
is($s,'1', "\$s is '1'?: my (\$s,\@a) = 1 .. 3");
is(@b,'2 3',"'{\@b}' is '2 3'?: my (\$s,\@a) = 1 .. 3");
is(@a,'1 2 3',"'@a' is '1 2 3'?: @a = 1 .. 3");
is($s,'1', "\$s is '1'?: my (\$s,@a) = 1 .. 3");
is(@b,'2 3', "'@b' is '2 3'?: my (\$s,@a) = 1 .. 3");
}

# RT #74302
Expand Down

0 comments on commit 4705fc0

Please sign in to comment.