leo/tests/compiler/statements/mutate.leo

24 lines
321 B
Plaintext
Raw Normal View History

2021-04-20 04:08:14 +03:00
/*
namespace: Compile
expectation: Pass
input_file:
2021-05-03 17:28:53 +03:00
- inputs/u32_3.in
- inputs/u32_5.in
2021-04-20 04:08:14 +03:00
*/
function main(x: u32) -> bool {
let b: u32 = 5u32;
2021-04-20 04:08:14 +03:00
if x == 3u32 {
b = 1u32;
2021-04-20 04:08:14 +03:00
} else {
b = 0u32;
2021-04-20 04:08:14 +03:00
}
if x == 3u32 {
return (b == 1u32);
2021-04-20 04:08:14 +03:00
} else {
return (b == 0u32);
2021-04-20 04:08:14 +03:00
}
}