2021-05-05 21:25:24 +03:00
|
|
|
/*
|
|
|
|
namespace: Compile
|
|
|
|
expectation: Fail
|
|
|
|
input_file: input/dummy.in
|
|
|
|
*/
|
|
|
|
|
|
|
|
function main() -> bool {
|
2021-03-18 22:19:07 +03:00
|
|
|
const arr: [u8; (2, 2)] = [[1u8; 2]; 1]; // incorrect dimensions
|
2021-05-05 21:25:24 +03:00
|
|
|
return false;
|
|
|
|
}
|