rust/src/test/compile-fail/import2.rs
2012-07-30 18:38:15 -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(); }