]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/redundant_static_lifetimes.stderr
649831f9c069af3d30a60cbf1d06a14f3b83ab9b
[rustc.git] / src / tools / clippy / tests / ui / redundant_static_lifetimes.stderr
1 error: constants have by default a `'static` lifetime
2 --> $DIR/redundant_static_lifetimes.rs:8: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:12: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:14: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:14: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:16:17
29 |
30 LL | const VAR_SIX: &'static u8 = &5;
31 | -^^^^^^^--- help: consider removing `'static`: `&u8`
32
33 error: constants have by default a `'static` lifetime
34 --> $DIR/redundant_static_lifetimes.rs:18:20
35 |
36 LL | const VAR_HEIGHT: &'static Foo = &Foo {};
37 | -^^^^^^^---- help: consider removing `'static`: `&Foo`
38
39 error: constants have by default a `'static` lifetime
40 --> $DIR/redundant_static_lifetimes.rs:20:19
41 |
42 LL | const VAR_SLICE: &'static [u8] = b"Test constant #1"; // ERROR Consider removing 'static.
43 | -^^^^^^^----- help: consider removing `'static`: `&[u8]`
44
45 error: constants have by default a `'static` lifetime
46 --> $DIR/redundant_static_lifetimes.rs:22:19
47 |
48 LL | const VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR Consider removing 'static.
49 | -^^^^^^^--------- help: consider removing `'static`: `&(u8, u8)`
50
51 error: constants have by default a `'static` lifetime
52 --> $DIR/redundant_static_lifetimes.rs:24:19
53 |
54 LL | const VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR Consider removing 'static.
55 | -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]`
56
57 error: statics have by default a `'static` lifetime
58 --> $DIR/redundant_static_lifetimes.rs:26:25
59 |
60 LL | static STATIC_VAR_ONE: &'static str = "Test static #1"; // ERROR Consider removing 'static.
61 | -^^^^^^^---- help: consider removing `'static`: `&str`
62
63 error: statics have by default a `'static` lifetime
64 --> $DIR/redundant_static_lifetimes.rs:30:29
65 |
66 LL | static STATIC_VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR Consider removing 'static
67 | -^^^^^^^---- help: consider removing `'static`: `&str`
68
69 error: statics have by default a `'static` lifetime
70 --> $DIR/redundant_static_lifetimes.rs:32:25
71 |
72 LL | static STATIC_VAR_SIX: &'static u8 = &5;
73 | -^^^^^^^--- help: consider removing `'static`: `&u8`
74
75 error: statics have by default a `'static` lifetime
76 --> $DIR/redundant_static_lifetimes.rs:34:28
77 |
78 LL | static STATIC_VAR_HEIGHT: &'static Foo = &Foo {};
79 | -^^^^^^^---- help: consider removing `'static`: `&Foo`
80
81 error: statics have by default a `'static` lifetime
82 --> $DIR/redundant_static_lifetimes.rs:36:27
83 |
84 LL | static STATIC_VAR_SLICE: &'static [u8] = b"Test static #3"; // ERROR Consider removing 'static.
85 | -^^^^^^^----- help: consider removing `'static`: `&[u8]`
86
87 error: statics have by default a `'static` lifetime
88 --> $DIR/redundant_static_lifetimes.rs:38:27
89 |
90 LL | static STATIC_VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR Consider removing 'static.
91 | -^^^^^^^--------- help: consider removing `'static`: `&(u8, u8)`
92
93 error: statics have by default a `'static` lifetime
94 --> $DIR/redundant_static_lifetimes.rs:40:27
95 |
96 LL | static STATIC_VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR Consider removing 'static.
97 | -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]`
98
99 error: aborting due to 16 previous errors
100