Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
macros
/
paren-or-brace-expected.rs
blob: 1776fa788847dc5ce24a5994f46c989d79e04cfc [
file
] [
log
] [
blame
]
macro_rules
!
foo
{
(
$
(
$i
:
ident
),*
)
=>
{
$
[
count
(
$i
)]
//~^ ERROR expected `(` or `{`, found `[`
//~| ERROR
};
}
fn
main
()
{}