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 {
606
606
#[ macro_export]
607
607
#[ cfg( dox) ]
608
608
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 */ } ) ;
611
611
}
612
612
613
613
/// Concatenates literals into a static string slice.
Original file line number Diff line number Diff line change @@ -450,8 +450,8 @@ pub mod builtin {
450
450
#[ unstable( feature = "concat_idents_macro" , issue = "29599" ) ]
451
451
#[ macro_export]
452
452
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 */ } ) ;
455
455
}
456
456
457
457
/// Concatenates literals into a static string slice.
You can’t perform that action at this time.
0 commit comments