Sign in
fuchsia
/
third_party
/
rust
/
6774856e0c81f6cbedd772d295a21005d04a9224
/
.
/
tests
/
ui
/
conditional-compilation
/
issue-34028.rs
blob: 3ee43cb4b322d958eff09467cc18b08eaa35d484 [
file
] [
log
] [
blame
]
//@ check-pass
macro_rules
!
m
{
()
=>
{
#[
cfg
(
any
())]
fn
f
()
{}
}
}
trait
T
{}
impl
T
for
()
{
m
!();
}
fn
main
()
{}