@@ -22,7 +22,7 @@ pub fn add_parameter() {}
2222#[ cfg( not( cfail1) ) ]
2323#[ rustc_clean(
2424 cfg = "cfail2" ,
25- except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, fn_sig "
25+ except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, try_fn_sig "
2626) ]
2727#[ rustc_clean( cfg = "cfail3" ) ]
2828pub fn add_parameter ( p : i32 ) { }
@@ -45,7 +45,7 @@ pub fn type_of_parameter(p: i32) {}
4545#[ cfg( not( cfail1) ) ]
4646#[ rustc_clean(
4747 cfg = "cfail2" ,
48- except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, fn_sig "
48+ except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, try_fn_sig "
4949) ]
5050#[ rustc_clean( cfg = "cfail3" ) ]
5151pub fn type_of_parameter ( p : i64 ) { }
@@ -58,7 +58,7 @@ pub fn type_of_parameter_ref(p: &i32) {}
5858#[ cfg( not( cfail1) ) ]
5959#[ rustc_clean(
6060 cfg = "cfail2" ,
61- except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, fn_sig "
61+ except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, try_fn_sig "
6262) ]
6363#[ rustc_clean( cfg = "cfail3" ) ]
6464pub fn type_of_parameter_ref ( p : & mut i32 ) { }
@@ -71,7 +71,7 @@ pub fn order_of_parameters(p1: i32, p2: i64) {}
7171#[ cfg( not( cfail1) ) ]
7272#[ rustc_clean(
7373 cfg = "cfail2" ,
74- except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, fn_sig "
74+ except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, try_fn_sig "
7575) ]
7676#[ rustc_clean( cfg = "cfail3" ) ]
7777pub fn order_of_parameters ( p2 : i64 , p1 : i32 ) { }
@@ -84,7 +84,7 @@ pub fn make_unsafe() {}
8484#[ cfg( not( cfail1) ) ]
8585#[ rustc_clean(
8686 cfg = "cfail2" ,
87- except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, fn_sig "
87+ except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, try_fn_sig "
8888) ]
8989#[ rustc_clean( cfg = "cfail3" ) ]
9090pub unsafe fn make_unsafe ( ) { }
@@ -95,7 +95,7 @@ pub unsafe fn make_unsafe() {}
9595pub fn make_extern ( ) { }
9696
9797#[ cfg( not( cfail1) ) ]
98- #[ rustc_clean( cfg = "cfail2" , except = "hir_owner, hir_owner_nodes, typeck, fn_sig " ) ]
98+ #[ rustc_clean( cfg = "cfail2" , except = "hir_owner, hir_owner_nodes, typeck, try_fn_sig " ) ]
9999#[ rustc_clean( cfg = "cfail3" ) ]
100100pub extern "C" fn make_extern ( ) { }
101101
@@ -241,7 +241,7 @@ pub fn return_impl_trait() -> i32 {
241241}
242242
243243#[ cfg( not( cfail1) ) ]
244- #[ rustc_clean( cfg = "cfail2" , except = "hir_owner, hir_owner_nodes, typeck, fn_sig " ) ]
244+ #[ rustc_clean( cfg = "cfail2" , except = "hir_owner, hir_owner_nodes, typeck, try_fn_sig " ) ]
245245#[ rustc_clean( cfg = "cfail3" ) ]
246246pub fn return_impl_trait ( ) -> impl Clone {
247247 0
@@ -274,7 +274,7 @@ pub mod change_return_type_indirectly {
274274
275275 #[ rustc_clean(
276276 cfg = "cfail2" ,
277- except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, fn_sig "
277+ except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, try_fn_sig "
278278 ) ]
279279 #[ rustc_clean( cfg = "cfail3" ) ]
280280 pub fn indirect_return_type ( ) -> ReturnType {
@@ -292,7 +292,7 @@ pub mod change_parameter_type_indirectly {
292292
293293 #[ rustc_clean(
294294 cfg = "cfail2" ,
295- except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, fn_sig "
295+ except = "hir_owner, hir_owner_nodes, optimized_mir, typeck, try_fn_sig "
296296 ) ]
297297 #[ rustc_clean( cfg = "cfail3" ) ]
298298 pub fn indirect_parameter_type ( p : ParameterType ) { }
0 commit comments