rustc/tests/ui/resolve/issue-82865.rs
2024-10-21 11:08:01 +02:00

14 lines
229 B
Rust

// 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!();
}