leo/disabled_tests/compiler/console/log_parameter_many.leo

11 lines
166 B
Plaintext
Raw Normal View History

2021-05-03 16:47:33 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
2021-05-03 16:47:33 +03:00
*/
function main(y: bool) -> bool {
2020-08-17 03:20:47 +03:00
console.log("{} {}", 1u32, true);
return y == true;
}