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