@@ -423,9 +423,9 @@ trait TraitAddBuiltinBoundToMethodTypeParameter {
423423
424424
425425
426- // Add lifetime bound to method type parameter ------------------------------------
426+ // Add lifetime bound to method lifetime parameter ------------------------------------
427427#[ cfg( cfail1) ]
428- trait TraitAddLifetimeBoundToMethodTypeParameter {
428+ trait TraitAddLifetimeBoundToMethodLifetimeParameter {
429429 fn method < ' a , ' b > ( a : & ' a u32 , b : & ' b u32 ) ;
430430}
431431
@@ -434,7 +434,7 @@ trait TraitAddLifetimeBoundToMethodTypeParameter {
434434#[ rustc_clean( label="Hir" , cfg="cfail3" ) ]
435435#[ rustc_metadata_dirty( cfg="cfail2" ) ]
436436#[ rustc_metadata_clean( cfg="cfail3" ) ]
437- trait TraitAddLifetimeBoundToMethodTypeParameter {
437+ trait TraitAddLifetimeBoundToMethodLifetimeParameter {
438438 fn method < ' a , ' b : ' a > ( a : & ' a u32 , b : & ' b u32 ) ;
439439}
440440
@@ -474,9 +474,9 @@ trait TraitAddSecondBuiltinBoundToMethodTypeParameter {
474474
475475
476476
477- // Add second lifetime bound to method type parameter -----------------------------
477+ // Add second lifetime bound to method lifetime parameter -----------------------------
478478#[ cfg( cfail1) ]
479- trait TraitAddSecondLifetimeBoundToMethodTypeParameter {
479+ trait TraitAddSecondLifetimeBoundToMethodLifetimeParameter {
480480 fn method < ' a , ' b , ' c : ' a > ( a : & ' a u32 , b : & ' b u32 , c : & ' c u32 ) ;
481481}
482482
@@ -485,7 +485,7 @@ trait TraitAddSecondLifetimeBoundToMethodTypeParameter {
485485#[ rustc_clean( label="Hir" , cfg="cfail3" ) ]
486486#[ rustc_metadata_dirty( cfg="cfail2" ) ]
487487#[ rustc_metadata_clean( cfg="cfail3" ) ]
488- trait TraitAddSecondLifetimeBoundToMethodTypeParameter {
488+ trait TraitAddSecondLifetimeBoundToMethodLifetimeParameter {
489489 fn method < ' a , ' b , ' c : ' a + ' b > ( a : & ' a u32 , b : & ' b u32 , c : & ' c u32 ) ;
490490}
491491
0 commit comments