File tree Expand file tree Collapse file tree 2 files changed +13
-14
lines changed
compiler/rustc_expand/src Expand file tree Collapse file tree 2 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 22#![ feature( associated_type_bounds) ]
33#![ feature( associated_type_defaults) ]
44#![ feature( crate_visibility_modifier) ]
5- #![ feature( decl_macro) ]
65#![ feature( if_let_guard) ]
76#![ feature( let_chains) ]
87#![ feature( let_else) ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use crate::cmp::*;
55
66// macro for implementing n-ary tuple functions and operations
77macro_rules! tuple_impls {
8- ( $( $Tuple : ident ( $( $T: ident ) + ) ) + ) => {
8+ ( $( ( $( $T: ident ) + ) ) + ) => {
99 $(
1010 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1111 impl <$( $T: PartialEq ) ,+> PartialEq for ( $( $T, ) +) where last_type!( $( $T, ) +) : ?Sized {
@@ -106,16 +106,16 @@ macro_rules! last_type {
106106}
107107
108108tuple_impls ! {
109- Tuple1 ( A )
110- Tuple2 ( A B )
111- Tuple3 ( A B C )
112- Tuple4 ( A B C D )
113- Tuple5 ( A B C D E )
114- Tuple6 ( A B C D E F )
115- Tuple7 ( A B C D E F G )
116- Tuple8 ( A B C D E F G H )
117- Tuple9 ( A B C D E F G H I )
118- Tuple10 ( A B C D E F G H I J )
119- Tuple11 ( A B C D E F G H I J K )
120- Tuple12 ( A B C D E F G H I J K L )
109+ ( A )
110+ ( A B )
111+ ( A B C )
112+ ( A B C D )
113+ ( A B C D E )
114+ ( A B C D E F )
115+ ( A B C D E F G )
116+ ( A B C D E F G H )
117+ ( A B C D E F G H I )
118+ ( A B C D E F G H I J )
119+ ( A B C D E F G H I J K )
120+ ( A B C D E F G H I J K L )
121121}
You can’t perform that action at this time.
0 commit comments