leo/tests/compiler/input_files/program_input/main_field.leo

10 lines
163 B
Plaintext
Raw Normal View History

2021-05-05 17:35:34 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/main_field.in
*/
function main(a: field, b: field, y: bool) -> bool {
return y == true && a == b;
2021-05-05 17:35:34 +03:00
}