Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Another fudge for (probably) #122448
  • Loading branch information
lizmat committed Aug 1, 2014
1 parent 1e3997c commit 2073365
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions S06-routine-modifiers/lvalue-subroutines.t
Expand Up @@ -83,10 +83,12 @@ dies_ok {checklastval("octopus") = 10 }, 'checklastval STORE can die';
# Above test may well die for the wrong reason, if the Proxy stuff didn't
# parse OK, it will complain that it couldn't find the desired subroutine
#?rakudo.parrot skip "aborts RT #122313"
#?rakudo.moar todo "seems related to #122448"
is((try { checklastval("fish") = 12 }), 12, 'proxy lvalue subroutine STORE works');
#?rakudo.parrot emit # "aborts RT #122313"
my $resultval = checklastval("fish");
#?rakudo.parrot skip "aborts RT #122313"
#?rakudo.moar todo "seems related to #122448"
is($resultval, 12, 'proxy lvalue subroutine FETCH works');

my $realvar = "foo";
Expand Down

0 comments on commit 2073365

Please sign in to comment.