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

6 lines
99 B
Rust

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