leo/tests/compiler/import_old/names_a_dash_fail.leo

11 lines
152 B
Plaintext
Raw Normal View History

// namespace: Compile
// expectation: Fail
// input_file: input/dummy.in
// cwd: imports
import a-.foo;
function main() -> bool {
return false;
}