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

mod m1 {
    mod a { }
}

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