@@ -612,9 +612,10 @@ mod builtin {
612
612
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
613
613
#[ macro_export]
614
614
#[ cfg( dox) ]
615
- macro_rules! format_args { ( $fmt: expr, $( $args: tt) * ) => ( {
616
- /* compiler built-in */
617
- } ) }
615
+ macro_rules! format_args {
616
+ ( $fmt: expr) => ( { /* compiler built-in */ } ) ;
617
+ ( $fmt: expr, $( $args: tt) * ) => ( { /* compiler built-in */ } ) ;
618
+ }
618
619
619
620
/// Inspect an environment variable at compile time.
620
621
///
@@ -624,7 +625,10 @@ mod builtin {
624
625
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
625
626
#[ macro_export]
626
627
#[ cfg( dox) ]
627
- macro_rules! env { ( $name: expr) => ( { /* compiler built-in */ } ) }
628
+ macro_rules! env {
629
+ ( $name: expr) => ( { /* compiler built-in */ } ) ;
630
+ ( $name: expr, ) => ( { /* compiler built-in */ } ) ;
631
+ }
628
632
629
633
/// Optionally inspect an environment variable at compile time.
630
634
///
@@ -645,7 +649,8 @@ mod builtin {
645
649
#[ macro_export]
646
650
#[ cfg( dox) ]
647
651
macro_rules! concat_idents {
648
- ( $( $e: ident) ,* ) => ( { /* compiler built-in */ } )
652
+ ( $( $e: ident) ,* ) => ( { /* compiler built-in */ } ) ;
653
+ ( $( $e: ident, ) * ) => ( { /* compiler built-in */ } ) ;
649
654
}
650
655
651
656
/// Concatenates literals into a static string slice.
@@ -656,7 +661,10 @@ mod builtin {
656
661
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
657
662
#[ macro_export]
658
663
#[ cfg( dox) ]
659
- macro_rules! concat { ( $( $e: expr) ,* ) => ( { /* compiler built-in */ } ) }
664
+ macro_rules! concat {
665
+ ( $( $e: expr) ,* ) => ( { /* compiler built-in */ } ) ;
666
+ ( $( $e: expr, ) * ) => ( { /* compiler built-in */ } ) ;
667
+ }
660
668
661
669
/// A macro which expands to the line number on which it was invoked.
662
670
///
0 commit comments