leo/tests/compiler/import_old/names_dash_a_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;
}