rust/src/test/run-pass/import3.rs

11 lines
135 B
Rust

import zed::bar;
import baz::zed;
mod baz {
mod zed {
fn bar() { log "bar2"; }
}
}
fn main(vec[str] args) { bar(); }