leo/compiler/tests/field/ternary.leo

5 lines
105 B
Plaintext
Raw Normal View History

function main(s: bool, a: field, b: field, c: field) {
let r = if s ? a : b;
assert_eq!(r, c);
2020-06-03 02:06:25 +03:00
}