Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
ui
/
macros
/
macro-use-both.rs
blob: e49f346c8e3e8f55f0ef3122170aacdc1a2c95bd [
file
] [
log
] [
blame
]
//@ run-pass
//@ aux-build:two_macros.rs
#[
macro_use
(
macro_one
,
macro_two
)]
extern
crate two_macros
;
pub
fn
main
()
{
macro_one
!();
macro_two
!();
}