summaryrefslogtreecommitdiffstats
path: root/src/test/ui/methods/method-call-lifetime-args-fail.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/methods/method-call-lifetime-args-fail.stderr')
-rw-r--r--src/test/ui/methods/method-call-lifetime-args-fail.stderr8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/ui/methods/method-call-lifetime-args-fail.stderr b/src/test/ui/methods/method-call-lifetime-args-fail.stderr
index 835edb4b0..249b48ab1 100644
--- a/src/test/ui/methods/method-call-lifetime-args-fail.stderr
+++ b/src/test/ui/methods/method-call-lifetime-args-fail.stderr
@@ -13,8 +13,8 @@ LL | fn early<'a, 'b>(self) -> (&'a u8, &'b u8) { loop {} }
| ^^^^^ -- --
help: add missing lifetime argument
|
-LL | S.early::<'static, 'b>();
- | ++++
+LL | S.early::<'static, 'static>();
+ | +++++++++
error[E0107]: this associated function takes 2 lifetime arguments but 3 lifetime arguments were supplied
--> $DIR/method-call-lifetime-args-fail.rs:18:7
@@ -213,8 +213,8 @@ LL | fn early<'a, 'b>(self) -> (&'a u8, &'b u8) { loop {} }
| ^^^^^ -- --
help: add missing lifetime argument
|
-LL | S::early::<'static, 'b>(S);
- | ++++
+LL | S::early::<'static, 'static>(S);
+ | +++++++++
error[E0107]: this associated function takes 2 lifetime arguments but 3 lifetime arguments were supplied
--> $DIR/method-call-lifetime-args-fail.rs:65:8