rust/src/test/compile-fail/import2.rs
2012-08-23 11:14:14 -07:00

8 lines
141 B
Rust

// error-pattern: unresolved
import baz::zed::bar;
mod baz { }
mod zed {
fn bar() { debug!("bar3"); }
}
fn main(args: ~[str]) { bar(); }