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 c02bce1 commit 9119a79Copy full SHA for 9119a79
S03-operators/arith.t
@@ -295,10 +295,10 @@ All uses of a zero modulus or divisor should 'die', and the
295
296
my $x;
297
298
-#?rakudo 2 todo 'modulo by zero'
+#?rakudo.parrot 2 todo 'modulo by zero'
299
eval_dies_ok('say 3 % 0', 'Modulo zero dies and is catchable');
300
dies_ok( { $x = 0; say 3 % $x; }, 'Modulo zero dies and is catchable with VInt/VRat variables');
301
-#?rakudo todo 'die or fail?'
+#?rakudo.parrot todo 'die or fail?'
302
dies_ok( { $x := 0; say 3 % $x; }, 'Modulo zero dies and is catchable with VRef variables');
303
304
eval_dies_ok('say 3 div 0', 'Division by zero dies and is catchable');
0 commit comments