rust/tests/ui/methods/method-call-lifetime-args-lint.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.4 KiB
Plaintext
Raw Normal View History

error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 15:56:47 +00:00
--> $DIR/method-call-lifetime-args-lint.rs:12:14
|
2018-02-23 00:42:32 +00:00
LL | fn late<'a, 'b>(self, _: &'a u8, _: &'b u8) {}
| -- the late bound lifetime parameter is introduced here
...
2018-02-23 00:42:32 +00:00
LL | S.late::<'static>(&0, &0);
| ^^^^^^^
|
2022-09-18 15:55:36 +00:00
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #42868 <https://github.com/rust-lang/rust/issues/42868>
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 15:56:47 +00:00
--> $DIR/method-call-lifetime-args-lint.rs:1:9
|
2018-02-23 00:42:32 +00:00
LL | #![deny(late_bound_lifetime_arguments)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: cannot specify lifetime arguments explicitly if late bound lifetime parameters are present
2018-12-25 15:56:47 +00:00
--> $DIR/method-call-lifetime-args-lint.rs:16:23
|
2018-02-23 00:42:32 +00:00
LL | fn late_implicit(self, _: &u8, _: &u8) {}
| - the late bound lifetime parameter is introduced here
...
2018-02-23 00:42:32 +00:00
LL | S.late_implicit::<'static>(&0, &0);
| ^^^^^^^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #42868 <https://github.com/rust-lang/rust/issues/42868>
error: aborting due to 2 previous errors