diff --git a/S02-magicals/dollar_bang.t b/S02-magicals/dollar_bang.t index 0ac63cb5b9..07d21a44db 100644 --- a/S02-magicals/dollar_bang.t +++ b/S02-magicals/dollar_bang.t @@ -12,6 +12,8 @@ This test tests the C<$!> builtin. # L +#?rakudo 3 skip 'unimpl $!' + eval '&nonexisting_subroutine()'; ok $!, 'Calling a nonexisting subroutine sets $!'; @@ -27,6 +29,7 @@ try { foo(@a,@a) }; ok $!, 'Calling a subroutine with a nonmatching signature sets $!'; ok !$called, 'The subroutine also was not called'; +#?rakudo skip 'unimpl $!' undefine $!; try { 1 / 0 }; ok $!, 'Dividing one by zero sets $!';