2021-03-30 03:31:53 +09:00
|
|
|
// Regression test for #82865.
|
|
|
|
|
|
|
|
|
|
#![feature(decl_macro)]
|
|
|
|
|
|
2024-11-18 03:42:16 +00:00
|
|
|
use x::y::z; //~ ERROR: failed to resolve: use of unresolved module or unlinked crate `x`
|
2021-03-30 03:31:53 +09:00
|
|
|
|
|
|
|
|
macro mac () {
|
|
|
|
|
Box::z //~ ERROR: no function or associated item
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
mac!();
|
|
|
|
|
}
|