mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-22 00:51:33 +03:00
13 lines
159 B
Plaintext
13 lines
159 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/dummy.in
|
|
*/
|
|
|
|
function main() -> bool {
|
|
let a = [1u32];
|
|
a[0] = 0;
|
|
|
|
return a[0] == 0u32;
|
|
}
|