leo/tests/compiler/input_files/program_input_constants/main_multiple.leo
2021-07-01 13:40:29 -07:00

10 lines
170 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/main_multiple.in
*/
function main(const a: bool, const b: bool, y: bool) -> bool {
return (a != b) == y;
}