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

mod m1 {
    mod a { }
}

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