mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +03:00
10 lines
156 B
Plaintext
10 lines
156 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/input_nested_3x2.in
|
|
*/
|
|
|
|
function main(a: [u8; (3, 2)]) -> bool {
|
|
return a == [[0u8; 2]; 3];
|
|
}
|