Sign in
rust
/
rust
/
cfbbb012bc108ee4cbc427c19b62e9e0b57f7fa0
/
.
/
tests
/
ui
/
attributes
/
illegal-macro-use.rs
blob: e16a223c75ff07754ca897c305264bd35e3d719b [
file
]
// issue#140255
#[
macro_use
::
a
]
//~ ERROR cannot find
fn
f0
()
{}
#[
macro_use
::
a
::
b
]
//~ ERROR cannot find
fn
f1
()
{}
#[
macro_escape
::
a
]
//~ ERROR cannot find
fn
f2
()
{}
#[
macro_escape
::
a
::
b
]
//~ ERROR cannot find
fn
f3
()
{}
fn
main
()
{}