From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/error-codes/E0195.rs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/test/ui/error-codes/E0195.rs (limited to 'src/test/ui/error-codes/E0195.rs') diff --git a/src/test/ui/error-codes/E0195.rs b/src/test/ui/error-codes/E0195.rs deleted file mode 100644 index f712ee42b..000000000 --- a/src/test/ui/error-codes/E0195.rs +++ /dev/null @@ -1,15 +0,0 @@ -trait Trait { - fn bar<'a,'b:'a>(x: &'a str, y: &'b str); - //~^ NOTE lifetimes in impl do not match this method in trait -} - -struct Foo; - -impl Trait for Foo { - fn bar<'a,'b>(x: &'a str, y: &'b str) { //~ ERROR E0195 - //~^ NOTE lifetimes do not match method in trait - } -} - -fn main() { -} -- cgit v1.2.3