We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a8ec6e commit cf34ae9Copy full SHA for cf34ae9
S32-list/sort.t
@@ -46,26 +46,6 @@ plan 32;
46
is(@s, @e, '... with explicit spaceship');
47
}
48
49
-#?rakudo skip "closure as non-final argument RT #124762"
50
-#?niecza skip 'Invocant handling is NYI'
51
-{
52
- my @a = (2, 45, 6, 1, 3);
53
- my @e = (1, 2, 3, 6, 45);
54
-
55
- my @s = sort { $^a <=> $^b }: @a;
56
- is(@s, @e, '... with closure as indirect invocant');
57
-}
58
59
-#?rakudo skip "method fallback to sub unimpl RT #124763"
60
-#?niecza skip 'err, what?'
61
62
63
64
65
- my @s = { $^a <=> $^b }.sort: @a;
66
- is(@s, @e, '... with closure as direct invocant');
67
68
69
{
70
my @a = (2, 45, 6, 1, 3);
71
my @e = (1, 2, 3, 6, 45);
0 commit comments