aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/bad-expr-path2.rs
blob: 1ace62956270f8d01c9df0d7d53bae44b41ac842 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// xfail-boot
// xfail-stage0
// error-pattern: unresolved name: a

mod m1 {
  mod a {
  }
}

fn main(vec[str] args) {
  log m1::a;
}