rust/tests/ui/resolve/issue-82865.rs
2025-11-27 11:19:00 -05:00

14 lines
262 B
Rust

//@ edition:2015
// 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!();
}