leo/compiler/tests/field/ternary.leo

5 lines
108 B
Plaintext
Raw Normal View History

function main(s: bool, a: field, b: field, c: field) {
2021-03-09 01:45:38 +03:00
let r = s ? a : b;
2020-08-17 05:14:26 +03:00
console.assert(r == c);
2020-06-03 02:06:25 +03:00
}