summary refs log tree commit diff
path: root/src/test/compile-fail/import2.rs
blob: d576f66b0641ce84d0d13be2ccca26b18e8b17c3 (plain)
1
2
3
4
5
6
7
// error-pattern: unresolved
import baz::zed::bar;
mod baz { }
mod zed {
    fn bar() { #debug("bar3"); }
}
fn main(args: ~[str]) { bar(); }