leo/tests/compiler/function/empty.leo

11 lines
99 B
Plaintext
Raw Normal View History

2021-05-05 18:29:44 +03:00
/*
namespace: Compile
expectation: Pass
*/
function empty() { }
function main() {
2020-07-17 22:59:18 +03:00
empty();
2021-05-05 18:29:44 +03:00
}