Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
test-attrs
/
test-cant-be-shadowed.rs
blob: ff47b1de177c0497a3e0e7b1324f8460fd89ba3e [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass (FIXME(62277): could be check-pass?)
//@ aux-build:test_macro.rs
//@ compile-flags:--test
#[
macro_use
]
extern
crate test_macro
;
#[
test
]
fn
foo
(){}
macro_rules
!
test
{
()
=>
()
}
#[
test
]
fn
bar
()
{}