diff options
| author | Andrea Pretto <eulerdisk@gmail.com> | 2016-10-05 23:02:01 +0200 |
|---|---|---|
| committer | Andrea Pretto <eulerdisk@gmail.com> | 2016-10-05 23:02:01 +0200 |
| commit | 0004698a88fbcdbe2477f307140314bcdaeb5e20 (patch) | |
| tree | 20cab49a1d232820b10917e184163ab8fbc27626 /src | |
| parent | a12d7636021e6022295f5399cbee1825a758f127 (diff) | |
| download | rust-0004698a88fbcdbe2477f307140314bcdaeb5e20.tar.gz rust-0004698a88fbcdbe2477f307140314bcdaeb5e20.zip | |
Added the third parameter to the "add second lifetime bound to method type parameter"
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/incremental/hashes/trait_defs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/incremental/hashes/trait_defs.rs b/src/test/incremental/hashes/trait_defs.rs index 8eccf65e71e..896428f1ed7 100644 --- a/src/test/incremental/hashes/trait_defs.rs +++ b/src/test/incremental/hashes/trait_defs.rs @@ -477,7 +477,7 @@ trait TraitAddSecondBuiltinBoundToMethodTypeParameter { // Add second lifetime bound to method type parameter ----------------------------- #[cfg(cfail1)] trait TraitAddSecondLifetimeBoundToMethodTypeParameter { - fn method<'a, 'b, 'c: 'a>(a: &'a u32, b: &'b u32); + fn method<'a, 'b, 'c: 'a>(a: &'a u32, b: &'b u32, c: &'c u32); } #[cfg(not(cfail1))] |
