mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 07:11:53 +03:00
4 lines
128 B
Plaintext
4 lines
128 B
Plaintext
|
function main() {
|
||
|
let arr: [u8; (2, 2)] = [[1u8, 1u8],
|
||
|
[1u8]]; // incorrect dimensions
|
||
|
}
|