Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
crashes
/
128346.rs
blob: 93d9c40a544e90f36862f9cc642f635cde206c0f [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: rust-lang/rust#128346
macro_rules
!
one_rep
{
(
$
(
$a
:
ident
)*
)
=>
{
A
(
const
$
{
concat
(
$a
,
Z
)}:
i32
=
3
;
)*
};
}
fn
main
()
{
one_rep
!(
A B C
);
}