From 07da8c09d97dd17bc6fcee126c85744accf0eb08 Mon Sep 17 00:00:00 2001 From: Rob Hoelz Date: Wed, 17 Jun 2015 09:46:39 -0500 Subject: [PATCH] RT #80614 is no longer TODO It's TODONE! --- S03-operators/assign.t | 1 - 1 file changed, 1 deletion(-) diff --git a/S03-operators/assign.t b/S03-operators/assign.t index b39722de5a..f055576f45 100755 --- a/S03-operators/assign.t +++ b/S03-operators/assign.t @@ -862,7 +862,6 @@ sub l () { 1, 2 }; my $rt80614 = @b[0] = @a[1]; is $rt80614, 2, 'assignment to scalar via array item from array item'; - #?rakudo todo 'RT #80614' is @b[0], 2, 'assignment to array item from array item to scalar'; }