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