blob: 0044aa5610f5f6613529f12a4c13f55dde372468 [file] [log] [blame]
macro_rules! test_macro {
( $( $t:ty ),* $(),*) => {
enum SomeEnum {
$( $t, )* //~ ERROR expected identifier, found `String`
};
};
}
fn main() {
test_macro!(String,);
}