Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
macro-issue1403.rs
blob: 52ba9c1a82a5266b1b7b965b911d56de813e0589 [
file
]
#![
feature
(
no_core
)]
#![
no_core
]
macro_rules
!
stmt
{
(
$s
:
stmt
)
=>
{
$s
};
(
$s
:
stmt
,
$
(
$ss
:
stmt
),*)
=>
{
$s
;
stmt
!(
$
(
$ss
),*);
};
}
fn
main
()
{
stmt
!(
struct
S
;
);
stmt
!(
struct
A
;,
struct
B
;,
struct
C
;,
struct
D
;,
struct
E
;
);
}