mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-22 09:01:35 +03:00
12 lines
141 B
Plaintext
12 lines
141 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
*/
|
|
|
|
function main () {
|
|
let x = 100i8;
|
|
if false {
|
|
x = 1i8;
|
|
x *= 100i8;
|
|
}
|
|
} |