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

mod m1 { }

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