about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAndrea Pretto <eulerdisk@gmail.com>2016-10-06 10:05:48 +0200
committerAndrea Pretto <eulerdisk@gmail.com>2016-10-06 10:05:48 +0200
commitbd77b3972f4e8a9a7c92e71f76dbffabe8f57ed7 (patch)
tree95410e76dc58a2603e8c21a38bf0d70033b5fcb5 /src
parent0004698a88fbcdbe2477f307140314bcdaeb5e20 (diff)
downloadrust-bd77b3972f4e8a9a7c92e71f76dbffabe8f57ed7.tar.gz
rust-bd77b3972f4e8a9a7c92e71f76dbffabe8f57ed7.zip
Changed some names
Diffstat (limited to 'src')
-rw-r--r--src/test/incremental/hashes/trait_defs.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/test/incremental/hashes/trait_defs.rs b/src/test/incremental/hashes/trait_defs.rs
index 896428f1ed7..58fbdabf872 100644
--- a/src/test/incremental/hashes/trait_defs.rs
+++ b/src/test/incremental/hashes/trait_defs.rs
@@ -423,9 +423,9 @@ trait TraitAddBuiltinBoundToMethodTypeParameter {
 
 
 
-// Add lifetime bound to method type parameter ------------------------------------
+// Add lifetime bound to method lifetime parameter ------------------------------------
 #[cfg(cfail1)]
-trait TraitAddLifetimeBoundToMethodTypeParameter {
+trait TraitAddLifetimeBoundToMethodLifetimeParameter {
     fn method<'a, 'b>(a: &'a u32, b: &'b u32);
 }
 
@@ -434,7 +434,7 @@ trait TraitAddLifetimeBoundToMethodTypeParameter {
 #[rustc_clean(label="Hir", cfg="cfail3")]
 #[rustc_metadata_dirty(cfg="cfail2")]
 #[rustc_metadata_clean(cfg="cfail3")]
-trait TraitAddLifetimeBoundToMethodTypeParameter {
+trait TraitAddLifetimeBoundToMethodLifetimeParameter {
     fn method<'a, 'b: 'a>(a: &'a u32, b: &'b u32);
 }
 
@@ -474,9 +474,9 @@ trait TraitAddSecondBuiltinBoundToMethodTypeParameter {
 
 
 
-// Add second lifetime bound to method type parameter -----------------------------
+// Add second lifetime bound to method lifetime parameter -----------------------------
 #[cfg(cfail1)]
-trait TraitAddSecondLifetimeBoundToMethodTypeParameter {
+trait TraitAddSecondLifetimeBoundToMethodLifetimeParameter {
     fn method<'a, 'b, 'c: 'a>(a: &'a u32, b: &'b u32, c: &'c u32);
 }
 
@@ -485,7 +485,7 @@ trait TraitAddSecondLifetimeBoundToMethodTypeParameter {
 #[rustc_clean(label="Hir", cfg="cfail3")]
 #[rustc_metadata_dirty(cfg="cfail2")]
 #[rustc_metadata_clean(cfg="cfail3")]
-trait TraitAddSecondLifetimeBoundToMethodTypeParameter {
+trait TraitAddSecondLifetimeBoundToMethodLifetimeParameter {
     fn method<'a, 'b, 'c: 'a + 'b>(a: &'a u32, b: &'b u32, c: &'c u32);
 }