Sign in
fuchsia
/
third_party
/
rust
/
e3029abfaec4252ab0ae7010780be0094d8870e0
/
.
/
tests
/
crashes
/
128346.rs
blob: 93d9c40a544e90f36862f9cc642f635cde206c0f [
file
] [
log
] [
blame
]
//@ 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
);
}