leo/tests/compiler/import/names_a_dash.leo

13 lines
146 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
*/
2020-08-15 11:58:33 +03:00
import a-.foo;
2021-05-05 19:31:25 +03:00
function main() -> bool {
return false;
}