summary refs log tree commit diff
path: root/src/test/compile-fail/bad-expr-path2.rs
blob: da6cfb652b5c078f8b3390e677302e1d54d277d0 (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); }