leo/tests/compiler/mutability/array_mut.leo

11 lines
132 B
Plaintext
Raw Normal View History

2021-05-03 17:28:53 +03:00
/*
namespace: Compile
expectation: Pass
*/
2020-07-31 02:37:01 +03:00
function main() {
let a = [1u32];
2020-07-17 22:59:18 +03:00
a[0] = 0;
2020-08-17 03:20:47 +03:00
console.assert(a[0] == 0u32);
}