leo/tests/compiler/input_files/program_input_constants/main_tuple.leo

10 lines
186 B
Plaintext
Raw Normal View History

2021-05-05 17:35:34 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/main_tuple.in
*/
function main(const x: (u8, bool, u8), y: bool) -> bool {
2021-05-05 17:35:34 +03:00
return x.0 == 10 && x.1 == true && x.2 == 10;
}