leo/compiler/tests/statements/ternary_basic.leo
2020-07-30 17:11:58 -07:00

5 lines
91 B
Plaintext

function main(a: bool, b: bool) {
let c = if a ? true : false;
assert_eq!(c, b);
}