leo/disabled_tests/compiler/input_files/program_input/main_array.leo

10 lines
136 B
Plaintext
Raw Normal View History

2021-05-05 17:35:34 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/main_array.in
*/
2021-05-05 17:48:33 +03:00
function main(x: [i16; 1]) -> bool{
return x[0] == 0;
2021-05-05 17:35:34 +03:00
}