leo/compiler/tests/field/ternary.leo
2021-03-08 14:45:38 -08:00

5 lines
108 B
Plaintext

function main(s: bool, a: field, b: field, c: field) {
let r = s ? a : b;
console.assert(r == c);
}