Sign in
rust
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
attributes
/
illegal-macro-use.rs
blob: e16a223c75ff07754ca897c305264bd35e3d719b [
file
] [
log
] [
blame
] [
edit
]
// 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
()
{}