leo/tests/compiler/console/log_parameter_many.leo

11 lines
167 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/dummy.in
*/
function main(y: bool) -> bool {
console.log("{} {}", 1u32, true);
return y == true;
}