leo/compiler/otests/array/nested.leo
2021-04-19 18:08:14 -07:00

5 lines
81 B
Plaintext

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