From 0004698a88fbcdbe2477f307140314bcdaeb5e20 Mon Sep 17 00:00:00 2001 From: Andrea Pretto Date: Wed, 5 Oct 2016 23:02:01 +0200 Subject: [PATCH] Added the third parameter to the "add second lifetime bound to method type parameter" --- src/test/incremental/hashes/trait_defs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/incremental/hashes/trait_defs.rs b/src/test/incremental/hashes/trait_defs.rs index 8eccf65e71eb..896428f1ed7f 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))]