leo/tests/compiler/input_files/program_input_constants/main_field.leo

10 lines
176 B
Plaintext

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