mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
15 lines
232 B
Rust
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!();
|
|
}
|