leo/tests/compiler/input_files/program_input/main_array.leo

11 lines
164 B
Plaintext
Raw Normal View History

2021-05-05 17:35:34 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/main_array.in
*/
function main(x: [i16; 1]) {
2020-12-17 00:02:31 +03:00
console.log("{}", x);
2021-02-11 18:46:20 +03:00
console.assert(x[0] == 0);
2021-05-05 17:35:34 +03:00
}