rust/src/test/compile-fail/bad-expr-path.rs
Marijn Haverbeke 46e5e2f685 Be less specific in 'unresolved import' error patterns
To make sure different test set-ups (check-fast) don't cause the
tests to fail.
2011-12-02 17:20:03 +01:00

6 lines
90 B
Rust

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