|
1 | 1 | error: Constants have by default a `'static` lifetime |
2 | | - --> $DIR/redundant_static_lifetimes.rs:4:17 |
| 2 | + --> $DIR/redundant_static_lifetimes.rs:8:17 |
3 | 3 | | |
4 | 4 | LL | const VAR_ONE: &'static str = "Test constant #1"; // ERROR Consider removing 'static. |
5 | 5 | | -^^^^^^^---- help: consider removing `'static`: `&str` |
6 | 6 | | |
7 | 7 | = note: `-D clippy::redundant-static-lifetimes` implied by `-D warnings` |
8 | 8 |
|
9 | 9 | error: Constants have by default a `'static` lifetime |
10 | | - --> $DIR/redundant_static_lifetimes.rs:8:21 |
| 10 | + --> $DIR/redundant_static_lifetimes.rs:12:21 |
11 | 11 | | |
12 | 12 | LL | const VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR Consider removing 'static |
13 | 13 | | -^^^^^^^---- help: consider removing `'static`: `&str` |
14 | 14 |
|
15 | 15 | error: Constants have by default a `'static` lifetime |
16 | | - --> $DIR/redundant_static_lifetimes.rs:10:32 |
| 16 | + --> $DIR/redundant_static_lifetimes.rs:14:32 |
17 | 17 | | |
18 | 18 | LL | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static |
19 | 19 | | -^^^^^^^---- help: consider removing `'static`: `&str` |
20 | 20 |
|
21 | 21 | error: Constants have by default a `'static` lifetime |
22 | | - --> $DIR/redundant_static_lifetimes.rs:10:47 |
| 22 | + --> $DIR/redundant_static_lifetimes.rs:14:47 |
23 | 23 | | |
24 | 24 | LL | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static |
25 | 25 | | -^^^^^^^---- help: consider removing `'static`: `&str` |
26 | 26 |
|
27 | 27 | error: Constants have by default a `'static` lifetime |
28 | | - --> $DIR/redundant_static_lifetimes.rs:12:18 |
29 | | - | |
30 | | -LL | const VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR Consider removing 'static |
31 | | - | -^^^^^^^------------------ help: consider removing `'static`: `&[&[&'static str]]` |
32 | | - |
33 | | -error: Constants have by default a `'static` lifetime |
34 | | - --> $DIR/redundant_static_lifetimes.rs:12:30 |
35 | | - | |
36 | | -LL | const VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR Consider removing 'static |
37 | | - | -^^^^^^^---- help: consider removing `'static`: `&str` |
38 | | - |
39 | | -error: Constants have by default a `'static` lifetime |
40 | | - --> $DIR/redundant_static_lifetimes.rs:14:17 |
| 28 | + --> $DIR/redundant_static_lifetimes.rs:16:17 |
41 | 29 | | |
42 | 30 | LL | const VAR_SIX: &'static u8 = &5; |
43 | 31 | | -^^^^^^^--- help: consider removing `'static`: `&u8` |
44 | 32 |
|
45 | | -error: Constants have by default a `'static` lifetime |
46 | | - --> $DIR/redundant_static_lifetimes.rs:16:29 |
47 | | - | |
48 | | -LL | const VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])]; |
49 | | - | -^^^^^^^--------------- help: consider removing `'static`: `&[&'static str]` |
50 | | - |
51 | | -error: Constants have by default a `'static` lifetime |
52 | | - --> $DIR/redundant_static_lifetimes.rs:16:39 |
53 | | - | |
54 | | -LL | const VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])]; |
55 | | - | -^^^^^^^---- help: consider removing `'static`: `&str` |
56 | | - |
57 | 33 | error: Constants have by default a `'static` lifetime |
58 | 34 | --> $DIR/redundant_static_lifetimes.rs:18:20 |
59 | 35 | | |
@@ -91,70 +67,34 @@ LL | static STATIC_VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR Consid |
91 | 67 | | -^^^^^^^---- help: consider removing `'static`: `&str` |
92 | 68 |
|
93 | 69 | error: Statics have by default a `'static` lifetime |
94 | | - --> $DIR/redundant_static_lifetimes.rs:32:40 |
95 | | - | |
96 | | -LL | static STATIC_VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static |
97 | | - | -^^^^^^^---- help: consider removing `'static`: `&str` |
98 | | - |
99 | | -error: Statics have by default a `'static` lifetime |
100 | | - --> $DIR/redundant_static_lifetimes.rs:32:55 |
101 | | - | |
102 | | -LL | static STATIC_VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static |
103 | | - | -^^^^^^^---- help: consider removing `'static`: `&str` |
104 | | - |
105 | | -error: Statics have by default a `'static` lifetime |
106 | | - --> $DIR/redundant_static_lifetimes.rs:34:26 |
107 | | - | |
108 | | -LL | static STATIC_VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR Consider removing 'static |
109 | | - | -^^^^^^^------------------ help: consider removing `'static`: `&[&[&'static str]]` |
110 | | - |
111 | | -error: Statics have by default a `'static` lifetime |
112 | | - --> $DIR/redundant_static_lifetimes.rs:34:38 |
113 | | - | |
114 | | -LL | static STATIC_VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR Consider removing 'static |
115 | | - | -^^^^^^^---- help: consider removing `'static`: `&str` |
116 | | - |
117 | | -error: Statics have by default a `'static` lifetime |
118 | | - --> $DIR/redundant_static_lifetimes.rs:36:25 |
| 70 | + --> $DIR/redundant_static_lifetimes.rs:32:25 |
119 | 71 | | |
120 | 72 | LL | static STATIC_VAR_SIX: &'static u8 = &5; |
121 | 73 | | -^^^^^^^--- help: consider removing `'static`: `&u8` |
122 | 74 |
|
123 | 75 | error: Statics have by default a `'static` lifetime |
124 | | - --> $DIR/redundant_static_lifetimes.rs:38:37 |
125 | | - | |
126 | | -LL | static STATIC_VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])]; |
127 | | - | -^^^^^^^--------------- help: consider removing `'static`: `&[&'static str]` |
128 | | - |
129 | | -error: Statics have by default a `'static` lifetime |
130 | | - --> $DIR/redundant_static_lifetimes.rs:38:47 |
131 | | - | |
132 | | -LL | static STATIC_VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])]; |
133 | | - | -^^^^^^^---- help: consider removing `'static`: `&str` |
134 | | - |
135 | | -error: Statics have by default a `'static` lifetime |
136 | | - --> $DIR/redundant_static_lifetimes.rs:40:28 |
| 76 | + --> $DIR/redundant_static_lifetimes.rs:34:28 |
137 | 77 | | |
138 | 78 | LL | static STATIC_VAR_HEIGHT: &'static Foo = &Foo {}; |
139 | 79 | | -^^^^^^^---- help: consider removing `'static`: `&Foo` |
140 | 80 |
|
141 | 81 | error: Statics have by default a `'static` lifetime |
142 | | - --> $DIR/redundant_static_lifetimes.rs:42:27 |
| 82 | + --> $DIR/redundant_static_lifetimes.rs:36:27 |
143 | 83 | | |
144 | 84 | LL | static STATIC_VAR_SLICE: &'static [u8] = b"Test static #3"; // ERROR Consider removing 'static. |
145 | 85 | | -^^^^^^^----- help: consider removing `'static`: `&[u8]` |
146 | 86 |
|
147 | 87 | error: Statics have by default a `'static` lifetime |
148 | | - --> $DIR/redundant_static_lifetimes.rs:44:27 |
| 88 | + --> $DIR/redundant_static_lifetimes.rs:38:27 |
149 | 89 | | |
150 | 90 | LL | static STATIC_VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR Consider removing 'static. |
151 | 91 | | -^^^^^^^--------- help: consider removing `'static`: `&(u8, u8)` |
152 | 92 |
|
153 | 93 | error: Statics have by default a `'static` lifetime |
154 | | - --> $DIR/redundant_static_lifetimes.rs:46:27 |
| 94 | + --> $DIR/redundant_static_lifetimes.rs:40:27 |
155 | 95 | | |
156 | 96 | LL | static STATIC_VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR Consider removing 'static. |
157 | 97 | | -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]` |
158 | 98 |
|
159 | | -error: aborting due to 26 previous errors |
| 99 | +error: aborting due to 16 previous errors |
160 | 100 |
|
0 commit comments