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