leo/compiler/tests/array/nested.leo

5 lines
81 B
Plaintext
Raw Normal View History

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