leo/tests/compiler/input_files/program_input_constants/main_field.leo
2021-05-05 17:35:34 +03:00

12 lines
242 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/main_field.in
*/
function main(const a: field, const b: field) {
// Change to assert when == is implemented for field.
console.log("a: {}", a);
console.log("b: {}", b);
}