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

5 lines
101 B
Plaintext
Raw Normal View History

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