summaryrefslogtreecommitdiff
path: root/tests/ui/lint
diff options
context:
space:
mode:
authorPavel Grigorenko <GrigorenkoPV@ya.ru>2024-09-01 16:49:55 +0300
committerPavel Grigorenko <GrigorenkoPV@ya.ru>2024-09-06 17:06:35 +0300
commit9e2d264fa251f98780084382a071e10a123770d6 (patch)
tree226df15d4fe43dc9900558fd115002e9fc07233d /tests/ui/lint
parent547db4a4b7c9bfea52b519d0095510126a0a1cb0 (diff)
Hack around a conflict with `clippy::needless_lifetimes`
Diffstat (limited to 'tests/ui/lint')
-rw-r--r--tests/ui/lint/elided-named-lifetimes/missing-lifetime-kind.stderr19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/ui/lint/elided-named-lifetimes/missing-lifetime-kind.stderr b/tests/ui/lint/elided-named-lifetimes/missing-lifetime-kind.stderr
index 834292d103d..249ae146b16 100644
--- a/tests/ui/lint/elided-named-lifetimes/missing-lifetime-kind.stderr
+++ b/tests/ui/lint/elided-named-lifetimes/missing-lifetime-kind.stderr
@@ -11,10 +11,6 @@ note: the lint level is defined here
|
LL | #![deny(elided_named_lifetimes)]
| ^^^^^^^^^^^^^^^^^^^^^^
-help: consider specifying it explicitly
- |
-LL | fn ampersand<'a>(x: &'a u8) -> &'a u8 {
- | ++
error: elided lifetime has a name
--> $DIR/missing-lifetime-kind.rs:10:31
@@ -23,11 +19,6 @@ LL | fn brackets<'a>(x: &'a u8) -> Brackets {
| -- ^^^^^^^^ this elided lifetime gets resolved as `'a`
| |
| lifetime `'a` declared here
- |
-help: consider specifying it explicitly
- |
-LL | fn brackets<'a>(x: &'a u8) -> Brackets<'a> {
- | ++++
error: elided lifetime has a name
--> $DIR/missing-lifetime-kind.rs:17:33
@@ -36,11 +27,6 @@ LL | fn comma<'a>(x: &'a u8) -> Comma<u8> {
| -- ^ this elided lifetime gets resolved as `'a`
| |
| lifetime `'a` declared here
- |
-help: consider specifying it explicitly
- |
-LL | fn comma<'a>(x: &'a u8) -> Comma<'a, u8> {
- | +++
error: elided lifetime has a name
--> $DIR/missing-lifetime-kind.rs:22:34
@@ -49,11 +35,6 @@ LL | fn underscore<'a>(x: &'a u8) -> &'_ u8 {
| -- ^^ this elided lifetime gets resolved as `'a`
| |
| lifetime `'a` declared here
- |
-help: consider specifying it explicitly
- |
-LL | fn underscore<'a>(x: &'a u8) -> &'a u8 {
- | ~~
error: aborting due to 4 previous errors