blob: 0cecbbe80f7632f9a91f364664c63372f708cb89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
error: this lifetime isn't used in the function definition
--> tests/ui/extra_unused_lifetimes.rs:19:14
|
LL | fn unused_lt<'a>(x: u8) {}
| ^^
|
= note: `-D clippy::extra-unused-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::extra_unused_lifetimes)]`
error: this lifetime isn't used in the function definition
--> tests/ui/extra_unused_lifetimes.rs:47:10
|
LL | fn x<'a>(&self) {}
| ^^
error: this lifetime isn't used in the function definition
--> tests/ui/extra_unused_lifetimes.rs:74:22
|
LL | fn unused_lt<'a>(x: u8) {}
| ^^
error: this lifetime isn't used in the impl
--> tests/ui/extra_unused_lifetimes.rs:86:10
|
LL | impl<'a> std::ops::AddAssign<&Scalar> for &mut Scalar {
| ^^
error: this lifetime isn't used in the impl
--> tests/ui/extra_unused_lifetimes.rs:93:10
|
LL | impl<'b> Scalar {
| ^^
error: this lifetime isn't used in the function definition
--> tests/ui/extra_unused_lifetimes.rs:95:26
|
LL | pub fn something<'c>() -> Self {
| ^^
error: this lifetime isn't used in the impl
--> tests/ui/extra_unused_lifetimes.rs:125:10
|
LL | impl<'a, T: Source + ?Sized + 'a> Source for Box<T> {
| ^^
error: aborting due to 7 previous errors
|