leo/asg/tests/pass/array/index_u8.leo

6 lines
90 B
Plaintext
Raw Normal View History

2021-01-25 22:01:28 +03:00
function main() {
let x = 0u8;
let a = [0u8; 4];
console.assert(a[x] == 0);
}