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