@@ -25,7 +25,7 @@ pub fn change_callee_function() {
2525}
2626
2727#[ cfg( not( cfail1) ) ]
28- #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,mir_built,optimized_mir,typeck_tables_of" ) ]
28+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_nodes ,mir_built,optimized_mir,typeck_tables_of" ) ]
2929#[ rustc_clean( cfg="cfail3" ) ]
3030pub fn change_callee_function ( ) {
3131 callee2 ( 1 , 2 )
@@ -40,7 +40,7 @@ pub fn change_argument_function() {
4040}
4141
4242#[ cfg( not( cfail1) ) ]
43- #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,mir_built,optimized_mir" ) ]
43+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_nodes ,mir_built,optimized_mir" ) ]
4444#[ rustc_clean( cfg="cfail3" ) ]
4545pub fn change_argument_function ( ) {
4646 callee1 ( 1 , 3 )
@@ -57,8 +57,8 @@ mod change_callee_indirectly_function {
5757
5858 #[ rustc_clean( label="hir_owner" , cfg="cfail2" ) ]
5959 #[ rustc_clean( label="hir_owner" , cfg="cfail3" ) ]
60- #[ rustc_dirty( label="hir_owner_items " , cfg="cfail2" ) ]
61- #[ rustc_clean( label="hir_owner_items " , cfg="cfail3" ) ]
60+ #[ rustc_dirty( label="hir_owner_nodes " , cfg="cfail2" ) ]
61+ #[ rustc_clean( label="hir_owner_nodes " , cfg="cfail3" ) ]
6262
6363
6464 pub fn change_callee_indirectly_function ( ) {
@@ -81,7 +81,7 @@ pub fn change_callee_method() {
8181}
8282
8383#[ cfg( not( cfail1) ) ]
84- #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,mir_built,optimized_mir,typeck_tables_of" ) ]
84+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_nodes ,mir_built,optimized_mir,typeck_tables_of" ) ]
8585#[ rustc_clean( cfg="cfail3" ) ]
8686pub fn change_callee_method ( ) {
8787 let s = Struct ;
@@ -98,7 +98,7 @@ pub fn change_argument_method() {
9898}
9999
100100#[ cfg( not( cfail1) ) ]
101- #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,mir_built,optimized_mir" ) ]
101+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_nodes ,mir_built,optimized_mir" ) ]
102102#[ rustc_clean( cfg="cfail3" ) ]
103103pub fn change_argument_method ( ) {
104104 let s = Struct ;
@@ -115,7 +115,7 @@ pub fn change_ufcs_callee_method() {
115115}
116116
117117#[ cfg( not( cfail1) ) ]
118- #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,mir_built,optimized_mir,typeck_tables_of" ) ]
118+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_nodes ,mir_built,optimized_mir,typeck_tables_of" ) ]
119119#[ rustc_clean( cfg="cfail3" ) ]
120120pub fn change_ufcs_callee_method ( ) {
121121 let s = Struct ;
@@ -132,7 +132,7 @@ pub fn change_argument_method_ufcs() {
132132}
133133
134134#[ cfg( not( cfail1) ) ]
135- #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,mir_built,optimized_mir" ) ]
135+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_nodes ,mir_built,optimized_mir" ) ]
136136#[ rustc_clean( cfg="cfail3" ) ]
137137pub fn change_argument_method_ufcs ( ) {
138138 let s = Struct ;
@@ -149,9 +149,9 @@ pub fn change_to_ufcs() {
149149}
150150
151151#[ cfg( not( cfail1) ) ]
152- #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,mir_built,optimized_mir,typeck_tables_of" ) ]
152+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_nodes ,mir_built,optimized_mir,typeck_tables_of" ) ]
153153#[ rustc_clean( cfg="cfail3" ) ]
154- // One might think this would be expanded in the hir_owner_items /Mir, but it actually
154+ // One might think this would be expanded in the hir_owner_nodes /Mir, but it actually
155155// results in slightly different hir_owner/Mir.
156156pub fn change_to_ufcs ( ) {
157157 let s = Struct ;
@@ -171,7 +171,7 @@ pub mod change_ufcs_callee_indirectly {
171171 #[ cfg( not( cfail1) ) ]
172172 use super :: Struct2 as Struct ;
173173
174- #[ rustc_clean( cfg="cfail2" , except="hir_owner_items ,mir_built,optimized_mir,typeck_tables_of" ) ]
174+ #[ rustc_clean( cfg="cfail2" , except="hir_owner_nodes ,mir_built,optimized_mir,typeck_tables_of" ) ]
175175 #[ rustc_clean( cfg="cfail3" ) ]
176176
177177
0 commit comments