mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 15:31:32 +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;
|
|
}
|
|
} |