Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
macro-use-one.rs
blob: 2b048651ccccf263dd28dceefeac074a4358d8b4 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ aux-build:two_macros.rs
#[
macro_use
(
macro_two
)]
extern
crate two_macros
;
pub
fn
main
()
{
macro_two
!();
}