summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/macro/issue-37113.rs
blob: 0044aa5610f5f6613529f12a4c13f55dde372468 (plain)
1
2
3
4
5
6
7
8
9
10
11
macro_rules! test_macro {
    ( $( $t:ty ),* $(),*) => {
        enum SomeEnum {
            $( $t, )* //~ ERROR expected identifier, found `String`
        };
    };
}

fn main() {
    test_macro!(String,);
}