leo/compiler/tests/statements/conditional/chain.leo
2020-07-30 17:11:58 -07:00

13 lines
182 B
Plaintext

function main(a: u32, b: u32) {
let mut c = 0u32;
if a == 1 {
c = 1;
} else if a == 2 {
c = 2;
} else {
c = 3;
}
assert_eq!(c, b);
}