@@ -25,7 +25,7 @@ pub fn change_callee_function() {
25
25
}
26
26
27
27
#[ 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" ) ]
29
29
#[ rustc_clean( cfg="cfail3" ) ]
30
30
pub fn change_callee_function ( ) {
31
31
callee2 ( 1 , 2 )
@@ -40,7 +40,7 @@ pub fn change_argument_function() {
40
40
}
41
41
42
42
#[ 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" ) ]
44
44
#[ rustc_clean( cfg="cfail3" ) ]
45
45
pub fn change_argument_function ( ) {
46
46
callee1 ( 1 , 3 )
@@ -57,8 +57,8 @@ mod change_callee_indirectly_function {
57
57
58
58
#[ rustc_clean( label="hir_owner" , cfg="cfail2" ) ]
59
59
#[ 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" ) ]
62
62
63
63
64
64
pub fn change_callee_indirectly_function ( ) {
@@ -81,7 +81,7 @@ pub fn change_callee_method() {
81
81
}
82
82
83
83
#[ 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" ) ]
85
85
#[ rustc_clean( cfg="cfail3" ) ]
86
86
pub fn change_callee_method ( ) {
87
87
let s = Struct ;
@@ -98,7 +98,7 @@ pub fn change_argument_method() {
98
98
}
99
99
100
100
#[ 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" ) ]
102
102
#[ rustc_clean( cfg="cfail3" ) ]
103
103
pub fn change_argument_method ( ) {
104
104
let s = Struct ;
@@ -115,7 +115,7 @@ pub fn change_ufcs_callee_method() {
115
115
}
116
116
117
117
#[ 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" ) ]
119
119
#[ rustc_clean( cfg="cfail3" ) ]
120
120
pub fn change_ufcs_callee_method ( ) {
121
121
let s = Struct ;
@@ -132,7 +132,7 @@ pub fn change_argument_method_ufcs() {
132
132
}
133
133
134
134
#[ 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" ) ]
136
136
#[ rustc_clean( cfg="cfail3" ) ]
137
137
pub fn change_argument_method_ufcs ( ) {
138
138
let s = Struct ;
@@ -149,9 +149,9 @@ pub fn change_to_ufcs() {
149
149
}
150
150
151
151
#[ 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" ) ]
153
153
#[ 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
155
155
// results in slightly different hir_owner/Mir.
156
156
pub fn change_to_ufcs ( ) {
157
157
let s = Struct ;
@@ -171,7 +171,7 @@ pub mod change_ufcs_callee_indirectly {
171
171
#[ cfg( not( cfail1) ) ]
172
172
use super :: Struct2 as Struct ;
173
173
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" ) ]
175
175
#[ rustc_clean( cfg="cfail3" ) ]
176
176
177
177
0 commit comments