leo/compiler/tests/array/nested.leo
Protryon 80d5c87b8a asg
2021-02-02 11:08:56 -08:00

5 lines
77 B
Plaintext

function main () {
let x = [false; (2, 2)];
let y: bool = x[0][0];
}