leo/tests/compiler/mutability/array_fail.leo

10 lines
100 B
Plaintext
Raw Normal View History

2021-05-03 17:28:53 +03:00
/*
namespace: Compile
expectation: Fail
*/
function main() {
const a = [1u32];
2020-07-17 22:59:18 +03:00
a[0] = 0;
2021-05-05 18:29:44 +03:00
}