This commit is contained in:
microproofs
2024-05-06 11:35:05 -04:00
parent 14903f7352
commit 2f61f59b60
4 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
test panic_aiken() {
and {
True,
should_fail(1),
}
}
fn should_fail(num) {
expect num == 0
True
}