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

5 lines
108 B
Plaintext

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