File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -606,8 +606,8 @@ mod builtin {
606606 #[ macro_export]
607607 #[ cfg( dox) ]
608608 macro_rules! concat_idents {
609- ( $( $e: ident) ,* ) => ( { /* compiler built-in */ } ) ;
610- ( $( $e: ident, ) * ) => ( { /* compiler built-in */ } ) ;
609+ ( $( $e: ident) ,+ ) => ( { /* compiler built-in */ } ) ;
610+ ( $( $e: ident, ) + ) => ( { /* compiler built-in */ } ) ;
611611 }
612612
613613 /// Concatenates literals into a static string slice.
Original file line number Diff line number Diff line change @@ -450,8 +450,8 @@ pub mod builtin {
450450 #[ unstable( feature = "concat_idents_macro" , issue = "29599" ) ]
451451 #[ macro_export]
452452 macro_rules! concat_idents {
453- ( $( $e: ident) ,* ) => ( { /* compiler built-in */ } ) ;
454- ( $( $e: ident, ) * ) => ( { /* compiler built-in */ } ) ;
453+ ( $( $e: ident) ,+ ) => ( { /* compiler built-in */ } ) ;
454+ ( $( $e: ident, ) + ) => ( { /* compiler built-in */ } ) ;
455455 }
456456
457457 /// Concatenates literals into a static string slice.
You can’t perform that action at this time.
0 commit comments