1
1
mirror of https://github.com/ProvableHQ/leo.git synced 2024-12-19 08:02:14 +03:00
leo/compiler/tests/array/input_tuple_3x2.leo

4 lines
75 B
Plaintext
Raw Normal View History

function main(a: [u8; (3, 2)]) {
console.assert(a == [0u8; (3, 2)]);
}