leo/compiler/tests/array/nested.leo

5 lines
77 B
Plaintext
Raw Normal View History

2020-12-17 00:02:31 +03:00
function main () {
let x = [false; (2, 2)];
let y: bool = x[0][0];
}