Fixed broken test

This commit is contained in:
2023-08-06 04:38:55 +10:00
parent f885fdaf4c
commit fb4258f9df
2 changed files with 7 additions and 12 deletions

View File

@@ -1,9 +0,0 @@
//explicitly support && and || short circuits
assert 1 && 2 == 2, "&& short-circuit failed";
assert 1 || 2 == 1, "|| short-circuit failed";
print "All good";