Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-40136.rs
blob: d5ccebdc85d1fba1f6cf175587e755cd14574709 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
dead_code
)]
macro_rules
!
m
{
()
=>
{
0
}
}
trait
T
{
const
C
:
i32
=
m
!();
}
struct
S
;
impl
S
{
const
C
:
i32
=
m
!();
}
fn
main
()
{}