mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-21 01:01:52 +03:00
11 lines
132 B
Plaintext
11 lines
132 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
*/
|
|
|
|
function main() {
|
|
let a = [1u32];
|
|
a[0] = 0;
|
|
|
|
console.assert(a[0] == 0u32);
|
|
} |