Files
2026-03-28 16:18:11 +09:00

15 lines
232 B
Rust

//@ edition:2015
// Regression test for #82865.
#![feature(decl_macro)]
use x::y::z; //~ ERROR: cannot find module or crate `x`
macro mac () {
Box::z //~ ERROR: no associated function or constant
}
fn main() {
mac!();
}