leo/tests/compiler/input_files/program_input/main_tuple_fail.leo

10 lines
147 B
Plaintext
Raw Normal View History

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