Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
issue-2207.rs
blob: cdc64fac9d38cc622ff166f73936b6d673f7aee6 [
file
] [
log
] [
blame
]
macro_rules
!
finish
{
(+
-
+
*
+
/)
=>
{}
}
macro_rules
!
foo
{
()
=>
{
foo
!(+
-
*
/);
};
(
$a
:
tt $
(
$b
:
tt
)*)
=>
{
finish
!(
$
(
$a $b
)*);
}
}
pub
fn
bar
()
{
foo
!();
}