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