rust/src/test/compile-fail/bad-expr-path2.rs

8 lines
112 B
Rust

// error-pattern: unresolved name: m1::a
mod m1 {
mod a { }
}
fn main(args: [str]) { log(debug, m1::a); }