This is an automatically generated mail to inform you that tests are now available in t/spec/S03-operators/misc.t
commit 75df3e515ed37e671931bd35e3dcbc9e6b0e1921 Author: moritz <mor...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Mon Aug 24 17:25:32 2009 +0000 [t/spec] unfudge tests for RT #66404 git-svn-id: http://svn.pugscode.org/p...@28056 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S03-operators/misc.t b/t/spec/S03-operators/misc.t index acd6f40..fe0ede2 100644 --- a/t/spec/S03-operators/misc.t +++ b/t/spec/S03-operators/misc.t @@ -55,7 +55,6 @@ is("text " ~ "stitching", "text stitching", 'concatenation with ~ operator'); is(2 || 3, 2, "|| returns first true value"); ok(!(defined( 0 || undef)), "|| returns last false value of list?"); -#?rakudo skip 'RT #66404' { (my @s)[0] //= 5; is @s[0], 5, '(my @s)[0] //= something works';