Sign in
rust
/
rust
/
cfbbb012bc108ee4cbc427c19b62e9e0b57f7fa0
/
.
/
tests
/
ui
/
macros
/
issue-35450.rs
blob: 0eb741ec6791dfb32eda22e7f83115bd9a7f7f4c [
file
]
macro_rules
!
m
{
(
$
(
$t
:
tt
)*)
=>
{
$
(
$t
)*
}
}
fn
main
()
{
m
!(
$t
);
//~ ERROR cannot find macro parameter `$t` in this scope
}