@@ -84,12 +84,12 @@ struct TupleStructAddField(
8484// Tuple Struct Field Visibility -----------------------------------------------
8585
8686#[ cfg( any( cfail1, cfail4) ) ]
87- struct TupleStructFieldVisibility ( char ) ;
87+ struct TupleStructFieldVisibility ( char ) ;
8888
8989#[ cfg( not( any( cfail1, cfail4) ) ) ]
90- #[ rustc_clean( except= "hir_owner,hir_owner_nodes,type_of ", cfg= "cfail2 ") ]
90+ #[ rustc_clean( cfg= "cfail2 ", except= "type_of ") ]
9191#[ rustc_clean( cfg="cfail3" ) ]
92- #[ rustc_clean( except="hir_owner,hir_owner_nodes,type_of" , cfg= "cfail5 ") ]
92+ #[ rustc_clean( cfg= "cfail5" , except="hir_owner,hir_owner_nodes,type_of" ) ]
9393#[ rustc_clean( cfg="cfail6" ) ]
9494struct TupleStructFieldVisibility ( pub char ) ;
9595
@@ -142,16 +142,14 @@ struct RecordStructAddField {
142142// Record Struct Field Visibility ----------------------------------------------
143143
144144#[ cfg( any( cfail1, cfail4) ) ]
145- struct RecordStructFieldVisibility { x : f32 }
145+ struct RecordStructFieldVisibility { x : f32 }
146146
147147#[ cfg( not( any( cfail1, cfail4) ) ) ]
148- #[ rustc_clean( except= "hir_owner,hir_owner_nodes,type_of ", cfg= "cfail2 ") ]
148+ #[ rustc_clean( cfg= "cfail2 ", except= "type_of ") ]
149149#[ rustc_clean( cfg="cfail3" ) ]
150- #[ rustc_clean( except="hir_owner,hir_owner_nodes,type_of" , cfg= "cfail5 ") ]
150+ #[ rustc_clean( cfg= "cfail5" , except="hir_owner,hir_owner_nodes,type_of" ) ]
151151#[ rustc_clean( cfg="cfail6" ) ]
152- struct RecordStructFieldVisibility {
153- pub x : f32
154- }
152+ struct RecordStructFieldVisibility { pub x : f32 }
155153
156154
157155// Add Lifetime Parameter ------------------------------------------------------
@@ -257,12 +255,12 @@ pub struct EmptyStruct;
257255// Visibility ------------------------------------------------------------------
258256
259257#[ cfg( any( cfail1, cfail4) ) ]
260- struct Visibility ;
258+ struct Visibility ;
261259
262260#[ cfg( not( any( cfail1, cfail4) ) ) ]
263- #[ rustc_clean( except= "hir_owner,hir_owner_nodes" , cfg="cfail2" ) ]
261+ #[ rustc_clean( cfg="cfail2" ) ]
264262#[ rustc_clean( cfg="cfail3" ) ]
265- #[ rustc_clean( except= "hir_owner,hir_owner_nodes ", cfg= "cfail5 ") ]
263+ #[ rustc_clean( cfg= "cfail5 ", except= "hir_owner,hir_owner_nodes ") ]
266264#[ rustc_clean( cfg="cfail6" ) ]
267265pub struct Visibility ;
268266
0 commit comments