Files
aiken/examples/acceptance_tests/102/lib/tests.ak
2024-05-06 11:35:55 -04:00

12 lines
120 B
Plaintext

test panic_aiken() fail {
and {
True,
should_fail(1),
}
}
fn should_fail(num) {
expect num == 0
True
}