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

mod m1 {
    mod a { }
}

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