leo/disabled_tests/compiler/console/error.leo

11 lines
162 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.error("hello error");
return y == true;
}