leo/tests/compiler/import/star_fail.leo

12 lines
167 B
Plaintext
Raw Normal View History

2021-05-05 19:31:25 +03:00
/*
namespace: Compile
expectation: Fail
input_file: input/dummy.in
cwd: imports
*/
// importing `*` from a directory is illegal
import bar.bat.*;
2021-05-05 19:31:25 +03:00
function main() {}