summary refs log tree commit diff
path: root/src/test/compile-fail/bad-expr-path.rs
blob: 62fc81649ff5819b26a06f9a141ab5745b9eeb21 (plain)
1
2
3
4
5
// error-pattern: unresolved name: m1::a

mod m1 { }

fn main(args: ~[str]) { log(debug, m1::a); }