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