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

10 lines
149 B
Plaintext

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