Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
empty
/
empty-macro-use.rs
blob: fadc653be74ee5b6e3b9e29fae21280d242cc5f2 [
file
] [
log
] [
blame
]
//@ aux-build:two_macros.rs
#[
macro_use
()]
//~^ WARN unused attribute
extern
crate two_macros
;
pub
fn
main
()
{
macro_two
!();
//~^ ERROR cannot find macro
}