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