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