leo/tests/pass/parse/integers/i128/ternary.leo

5 lines
108 B
Plaintext
Raw Normal View History

2021-03-03 20:59:24 +03:00
function main(s: bool, a: i128, b: i128, c: i128) {
let r = if s ? a : b;
console.assert(r == c);
}