Files
aiken/examples/acceptance_tests/080/lib/tests.ak
microproofs fc1b8738df fix: fixed how the ir was generating for expect Void, expect Bool, let Void
add some acceptance tests for the various scenarios
2023-04-12 22:37:33 -04:00

33 lines
308 B
Plaintext

test foo1() {
let bar: Data = Void
let x = True
expect Void: Void = bar
// let Void = bar
x
}
test foo2() {
let bar = Void
let x = True
expect Void: Void = bar
// let Void = bar
x
}
test foo3() {
let bar = Void
let x = True
let Void: Void = bar
// let Void = bar
x
}