rust/src/test/compile-fail/bad-module.rs

5 lines
92 B
Rust

// error-pattern: unresolved import
import thing;
fn main() { let foo = thing::len(~[]); }