summary refs log tree commit diff
path: root/tests/ui/macros/paren-or-brace-expected.rs
blob: 1776fa788847dc5ce24a5994f46c989d79e04cfc (plain)
1
2
3
4
5
6
7
8
9
macro_rules! foo {
    ( $( $i:ident ),* ) => {
        $[count($i)]
        //~^ ERROR expected `(` or `{`, found `[`
        //~| ERROR
    };
}

fn main() {}