2022-01-13 12:18:19 +00:00
|
|
|
error: single-character lifetime names are likely uninformative
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_char_lifetime_names.rs:5:22
|
2022-01-13 12:18:19 +00:00
|
|
|
|
|
|
|
|
LL | struct DiagnosticCtx<'a, 'b>
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
= help: use a more informative name
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::single-char-lifetime-names` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::single_char_lifetime_names)]`
|
2022-01-13 12:18:19 +00:00
|
|
|
|
|
|
|
error: single-character lifetime names are likely uninformative
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_char_lifetime_names.rs:5:26
|
2022-01-13 12:18:19 +00:00
|
|
|
|
|
|
|
|
LL | struct DiagnosticCtx<'a, 'b>
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
= help: use a more informative name
|
|
|
|
|
|
|
|
error: single-character lifetime names are likely uninformative
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_char_lifetime_names.rs:16:6
|
2022-01-13 12:18:19 +00:00
|
|
|
|
|
|
|
|
LL | impl<'a, 'b> DiagnosticCtx<'a, 'b> {
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
= help: use a more informative name
|
|
|
|
|
|
|
|
error: single-character lifetime names are likely uninformative
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_char_lifetime_names.rs:16:10
|
2022-01-13 12:18:19 +00:00
|
|
|
|
|
|
|
|
LL | impl<'a, 'b> DiagnosticCtx<'a, 'b> {
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
= help: use a more informative name
|
|
|
|
|
|
|
|
error: single-character lifetime names are likely uninformative
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_char_lifetime_names.rs:38:15
|
2022-01-13 12:18:19 +00:00
|
|
|
|
|
|
|
|
LL | fn split_once<'a>(base: &'a str, other: &'_ str) -> (&'a str, Option<&'a str>) {
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
= help: use a more informative name
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|