Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
macros
/
macro-use-all.rs
blob: a7fd3dfa5ce6036a6e8a347cde64eaf9cb4c6c17 [
file
] [
log
] [
blame
]
//@ run-pass
//@ aux-build:two_macros.rs
#[
macro_use
]
extern
crate two_macros
;
pub
fn
main
()
{
macro_one
!();
macro_two
!();
}