leo/tests/compiler/function/empty.leo

13 lines
162 B
Plaintext
Raw Normal View History

2021-05-05 18:29:44 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
2021-05-05 18:29:44 +03:00
*/
function empty() {}
function main(y: bool) -> bool {
2020-07-17 22:59:18 +03:00
empty();
return y == true;
2021-05-05 18:29:44 +03:00
}