Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
issue-39467.rs
blob: 5405ec3fb3d5b515aa29f176e111fc82f921068c [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
dead_code
)]
macro_rules
!
expr
{
()
=>
{
()
}
}
enum
A
{}
impl
A
{
const
A
:
()
=
expr
!();
}
fn
main
()
{}