leo/compiler/_otests/canonicalization/illegal_array_range_fail.leo
2021-05-12 19:39:27 +03:00

4 lines
56 B
Plaintext

function main () {
let x = [1u32; 5];
x[..2] += 1;
}