leo/asg/tests/fail/array/input_nested_3x2_fail.leo

4 lines
152 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function main(a: [u8; (3, 2)]) {
console.assert(a == [[0u8; 2]; 3)]); // This should be written the right way as this test is for the input file.
}