]> git.lizzy.rs Git - rust.git/blob - tests/ui/redundant_static_lifetimes.stderr
Auto merge of #4162 - krk:static-static, r=flip1995
[rust.git] / tests / ui / redundant_static_lifetimes.stderr
1 error: Constants have by default a `'static` lifetime
2   --> $DIR/redundant_static_lifetimes.rs:4:17
3    |
4 LL | const VAR_ONE: &'static str = "Test constant #1"; // ERROR Consider removing 'static.
5    |                -^^^^^^^---- help: consider removing `'static`: `&str`
6    |
7    = note: `-D clippy::redundant-static-lifetimes` implied by `-D warnings`
8
9 error: Constants have by default a `'static` lifetime
10   --> $DIR/redundant_static_lifetimes.rs:8:21
11    |
12 LL | const VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR Consider removing 'static
13    |                    -^^^^^^^---- help: consider removing `'static`: `&str`
14
15 error: Constants have by default a `'static` lifetime
16   --> $DIR/redundant_static_lifetimes.rs:10:32
17    |
18 LL | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
19    |                               -^^^^^^^---- help: consider removing `'static`: `&str`
20
21 error: Constants have by default a `'static` lifetime
22   --> $DIR/redundant_static_lifetimes.rs:10:47
23    |
24 LL | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
25    |                                              -^^^^^^^---- help: consider removing `'static`: `&str`
26
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
41    |
42 LL | const VAR_SIX: &'static u8 = &5;
43    |                -^^^^^^^--- help: consider removing `'static`: `&u8`
44
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 error: Constants have by default a `'static` lifetime
58   --> $DIR/redundant_static_lifetimes.rs:18:20
59    |
60 LL | const VAR_HEIGHT: &'static Foo = &Foo {};
61    |                   -^^^^^^^---- help: consider removing `'static`: `&Foo`
62
63 error: Constants have by default a `'static` lifetime
64   --> $DIR/redundant_static_lifetimes.rs:20:19
65    |
66 LL | const VAR_SLICE: &'static [u8] = b"Test constant #1"; // ERROR Consider removing 'static.
67    |                  -^^^^^^^----- help: consider removing `'static`: `&[u8]`
68
69 error: Constants have by default a `'static` lifetime
70   --> $DIR/redundant_static_lifetimes.rs:22:19
71    |
72 LL | const VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR Consider removing 'static.
73    |                  -^^^^^^^--------- help: consider removing `'static`: `&(u8, u8)`
74
75 error: Constants have by default a `'static` lifetime
76   --> $DIR/redundant_static_lifetimes.rs:24:19
77    |
78 LL | const VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR Consider removing 'static.
79    |                  -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]`
80
81 error: Statics have by default a `'static` lifetime
82   --> $DIR/redundant_static_lifetimes.rs:26:25
83    |
84 LL | static STATIC_VAR_ONE: &'static str = "Test static #1"; // ERROR Consider removing 'static.
85    |                        -^^^^^^^---- help: consider removing `'static`: `&str`
86
87 error: Statics have by default a `'static` lifetime
88   --> $DIR/redundant_static_lifetimes.rs:30:29
89    |
90 LL | static STATIC_VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR Consider removing 'static
91    |                            -^^^^^^^---- help: consider removing `'static`: `&str`
92
93 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
119    |
120 LL | static STATIC_VAR_SIX: &'static u8 = &5;
121    |                        -^^^^^^^--- help: consider removing `'static`: `&u8`
122
123 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
137    |
138 LL | static STATIC_VAR_HEIGHT: &'static Foo = &Foo {};
139    |                           -^^^^^^^---- help: consider removing `'static`: `&Foo`
140
141 error: Statics have by default a `'static` lifetime
142   --> $DIR/redundant_static_lifetimes.rs:42:27
143    |
144 LL | static STATIC_VAR_SLICE: &'static [u8] = b"Test static #3"; // ERROR Consider removing 'static.
145    |                          -^^^^^^^----- help: consider removing `'static`: `&[u8]`
146
147 error: Statics have by default a `'static` lifetime
148   --> $DIR/redundant_static_lifetimes.rs:44:27
149    |
150 LL | static STATIC_VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR Consider removing 'static.
151    |                          -^^^^^^^--------- help: consider removing `'static`: `&(u8, u8)`
152
153 error: Statics have by default a `'static` lifetime
154   --> $DIR/redundant_static_lifetimes.rs:46:27
155    |
156 LL | static STATIC_VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR Consider removing 'static.
157    |                          -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]`
158
159 error: aborting due to 26 previous errors
160