about summary refs log tree commit diff
path: root/src/test/compile-fail/bad-expr-path.rs
blob: 56c09f48f16db9a5188bb872b73f2c86efa76608 (plain)
1
2
3
4
5
6
7
8
// error-pattern: unresolved name: a

mod m1 {
}

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