Skip to content

Commit

Permalink
Add fuged test for RT #116178
Browse files Browse the repository at this point in the history
  • Loading branch information
usev6 committed Mar 11, 2015
1 parent 25f2964 commit b80e436
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion S03-operators/assign.t
Expand Up @@ -6,7 +6,7 @@ use Test;
# V
# L<S03/Changes to Perl 5 operators/list assignment operator now parses on the right>

plan 295;
plan 296;


# tests various assignment styles
Expand Down Expand Up @@ -959,4 +959,12 @@ sub l () { 1, 2 };
"Can't use fiddly ~~ with the = metaop ";
}

# RT #116178
#?rakudo todo 'RT #116178'
{
my $x //= .uc for 'a';
is $x, 'A',
'default-assignment (//-) does mix with implicit-variable method call';
}

# vim: ft=perl6

0 comments on commit b80e436

Please sign in to comment.