@@ -84,12 +84,12 @@ struct TupleStructAddField(
84
84
// Tuple Struct Field Visibility -----------------------------------------------
85
85
86
86
#[ cfg( any( cfail1, cfail4) ) ]
87
- struct TupleStructFieldVisibility ( char ) ;
87
+ struct TupleStructFieldVisibility ( char ) ;
88
88
89
89
#[ 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 ") ]
91
91
#[ 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" ) ]
93
93
#[ rustc_clean( cfg="cfail6" ) ]
94
94
struct TupleStructFieldVisibility ( pub char ) ;
95
95
@@ -142,16 +142,14 @@ struct RecordStructAddField {
142
142
// Record Struct Field Visibility ----------------------------------------------
143
143
144
144
#[ cfg( any( cfail1, cfail4) ) ]
145
- struct RecordStructFieldVisibility { x : f32 }
145
+ struct RecordStructFieldVisibility { x : f32 }
146
146
147
147
#[ 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 ") ]
149
149
#[ 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" ) ]
151
151
#[ rustc_clean( cfg="cfail6" ) ]
152
- struct RecordStructFieldVisibility {
153
- pub x : f32
154
- }
152
+ struct RecordStructFieldVisibility { pub x : f32 }
155
153
156
154
157
155
// Add Lifetime Parameter ------------------------------------------------------
@@ -257,12 +255,12 @@ pub struct EmptyStruct;
257
255
// Visibility ------------------------------------------------------------------
258
256
259
257
#[ cfg( any( cfail1, cfail4) ) ]
260
- struct Visibility ;
258
+ struct Visibility ;
261
259
262
260
#[ cfg( not( any( cfail1, cfail4) ) ) ]
263
- #[ rustc_clean( except= "hir_owner,hir_owner_nodes" , cfg="cfail2" ) ]
261
+ #[ rustc_clean( cfg="cfail2" ) ]
264
262
#[ 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 ") ]
266
264
#[ rustc_clean( cfg="cfail6" ) ]
267
265
pub struct Visibility ;
268
266
0 commit comments