leo/tests/compiler/input_files/program_input/main_array_fail.leo

10 lines
141 B
Plaintext
Raw Normal View History

2021-05-05 17:35:34 +03:00
/*
namespace: Compile
expectation: Fail
input_file: input/main_array_fail.in
*/
function main(x: [i16; 2]) {
console.log("x: {}", x);
}