blob: 29a898906e96bd6c1134fa19ac6f528f122a76c8 [file] [log] [blame] [edit]
// Regression test for #82865.
#![feature(decl_macro)]
use x::y::z; //~ ERROR: failed to resolve: you might be missing crate `x`
macro mac () {
Box::z //~ ERROR: no function or associated item
}
fn main() {
mac!();
}