Skip to content

Commit 0004698

Browse files
committed
Added the third parameter to the "add second lifetime bound to method type parameter"
1 parent a12d763 commit 0004698

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/incremental/hashes/trait_defs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ trait TraitAddSecondBuiltinBoundToMethodTypeParameter {
477477
// Add second lifetime bound to method type parameter -----------------------------
478478
#[cfg(cfail1)]
479479
trait TraitAddSecondLifetimeBoundToMethodTypeParameter {
480-
fn method<'a, 'b, 'c: 'a>(a: &'a u32, b: &'b u32);
480+
fn method<'a, 'b, 'c: 'a>(a: &'a u32, b: &'b u32, c: &'c u32);
481481
}
482482

483483
#[cfg(not(cfail1))]

0 commit comments

Comments
 (0)