mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
10 lines
160 B
Plaintext
10 lines
160 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: input/input_tuple_3x2_fail.in
|
|
*/
|
|
|
|
function main(a: [u8; (3, 2)]) -> bool {
|
|
return a == [0u8; (3, 2)];
|
|
}
|