rust/src/test/compile-fail/import-from-missing.rs
2012-07-09 10:27:13 -07:00

8 lines
115 B
Rust

// error-pattern:unresolved
import spam::{ham, eggs};
mod spam {
fn ham() { }
}
fn main() { ham(); eggs(); }