mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
11 lines
186 B
Plaintext
11 lines
186 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: input/dummy.in
|
|
*/
|
|
|
|
function main() -> bool {
|
|
const arr: [u8; (2, 2)] = [[1u8; 2]; 1]; // incorrect dimensions
|
|
return false;
|
|
}
|