blob: 4dc12f2f58956d5cf784233579397fb0cd848f4d [file] [log] [blame]
// Regression test for #82865.
#![feature(decl_macro)]
use x::y::z; //~ ERROR: failed to resolve: use of unresolved module or unlinked crate `x`
macro mac () {
Box::z //~ ERROR: no function or associated item
}
fn main() {
mac!();
}