Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
tests
/
ui
/
resolve
/
issue-82865.rs
blob: 230725155d8aa06669554a9d2cbc48d41aad7f9a [
file
]
//@ 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
!();
}