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 6600ef0 commit fe656e4Copy full SHA for fe656e4
S03-operators/short-circuit.t
@@ -160,8 +160,7 @@ sub accumtest($expect, $op) {
160
#?niecza 10 skip "^^ xor NYI"
161
is(0 ^^ 42, 42, "^^ operator working (one true)");
162
is(42 ^^ 0, 42, "^^ operator working (one true)");
163
- #?rakudo todo 'wrong return type'
164
- is(1 ^^ 42, False, "^^ operator working (both true)");
+ is(1 ^^ 42, Nil, "^^ operator working (both true)");
165
is(0 ^^ 0, 0, "^^ operator working (both false)");
166
is((0 xor 42), 42, "xor operator working (one true)");
167
is((42 xor 0), 42, "xor operator working (one true)");
0 commit comments