aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/import3.rs
blob: 559c6ee9ea97c153cf359e46597dc7dad4f8f12d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import zed.bar;
import baz.zed;
mod baz {
  mod zed {
    fn bar() {
      log "bar2";
    }
  }
}
fn main(vec[str] args) {
  bar();
}