leo/tests/compiler/group/ternary.leo
2021-04-19 18:08:14 -07:00

5 lines
110 B
Plaintext

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