mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 11:11:14 +00:00
14 lines
229 B
Rust
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!();
|
|
}
|