rust-clippy/tests/ui/redundant_static_lifetimes.stderr

113 lines
4.9 KiB
Text
Raw Normal View History

error: constants have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:8:17
2018-10-06 16:18:06 +00:00
|
2023-04-20 15:19:36 +00:00
LL | const VAR_ONE: &'static str = "Test constant #1"; // ERROR: Consider removing 'static.
2018-10-06 16:18:06 +00:00
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
= note: `-D clippy::redundant-static-lifetimes` implied by `-D warnings`
2017-10-20 13:56:26 +00:00
error: constants have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:12:21
2018-10-06 16:18:06 +00:00
|
2023-04-20 15:19:36 +00:00
LL | const VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR: Consider removing 'static
2018-10-06 16:18:06 +00:00
| -^^^^^^^---- help: consider removing `'static`: `&str`
2017-10-20 13:56:26 +00:00
error: constants have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:14:32
2017-10-20 13:56:26 +00:00
|
2023-04-20 15:19:36 +00:00
LL | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR: Consider removing 'static
| -^^^^^^^---- help: consider removing `'static`: `&str`
2017-10-20 13:56:26 +00:00
error: constants have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:14:47
2017-10-20 13:56:26 +00:00
|
2023-04-20 15:19:36 +00:00
LL | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR: Consider removing 'static
| -^^^^^^^---- help: consider removing `'static`: `&str`
2017-10-20 13:56:26 +00:00
error: constants have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:16:17
2017-10-20 13:56:26 +00:00
|
2018-12-27 15:57:55 +00:00
LL | const VAR_SIX: &'static u8 = &5;
| -^^^^^^^--- help: consider removing `'static`: `&u8`
2017-10-20 13:56:26 +00:00
error: constants have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:18:20
2017-10-20 13:56:26 +00:00
|
2018-12-27 15:57:55 +00:00
LL | const VAR_HEIGHT: &'static Foo = &Foo {};
| -^^^^^^^---- help: consider removing `'static`: `&Foo`
2017-10-20 13:56:26 +00:00
error: constants have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:20:19
|
2023-04-20 15:19:36 +00:00
LL | const VAR_SLICE: &'static [u8] = b"Test constant #1"; // ERROR: Consider removing 'static.
| -^^^^^^^----- help: consider removing `'static`: `&[u8]`
error: constants have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:22:19
|
2023-04-20 15:19:36 +00:00
LL | const VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR: Consider removing 'static.
| -^^^^^^^--------- help: consider removing `'static`: `&(u8, u8)`
error: constants have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:24:19
|
2023-04-20 15:19:36 +00:00
LL | const VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR: Consider removing 'static.
| -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]`
error: statics have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:26:25
|
2023-04-20 15:19:36 +00:00
LL | static STATIC_VAR_ONE: &'static str = "Test static #1"; // ERROR: Consider removing 'static.
| -^^^^^^^---- help: consider removing `'static`: `&str`
error: statics have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:30:29
|
2023-04-20 15:19:36 +00:00
LL | static STATIC_VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR: Consider removing 'static
| -^^^^^^^---- help: consider removing `'static`: `&str`
error: statics have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:32:25
|
LL | static STATIC_VAR_SIX: &'static u8 = &5;
| -^^^^^^^--- help: consider removing `'static`: `&u8`
error: statics have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:34:28
|
LL | static STATIC_VAR_HEIGHT: &'static Foo = &Foo {};
| -^^^^^^^---- help: consider removing `'static`: `&Foo`
error: statics have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:36:27
|
2023-04-20 15:19:36 +00:00
LL | static STATIC_VAR_SLICE: &'static [u8] = b"Test static #3"; // ERROR: Consider removing 'static.
| -^^^^^^^----- help: consider removing `'static`: `&[u8]`
error: statics have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:38:27
|
2023-04-20 15:19:36 +00:00
LL | static STATIC_VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR: Consider removing 'static.
| -^^^^^^^--------- help: consider removing `'static`: `&(u8, u8)`
error: statics have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:40:27
|
2023-04-20 15:19:36 +00:00
LL | static STATIC_VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR: Consider removing 'static.
| -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]`
error: statics have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:42:31
|
LL | static mut STATIC_MUT_SLICE: &'static mut [u32] = &mut [0];
| -^^^^^^^---------- help: consider removing `'static`: `&mut [u32]`
error: statics have by default a `'static` lifetime
--> $DIR/redundant_static_lifetimes.rs:71:16
|
LL | static V: &'static u8 = &17;
| -^^^^^^^--- help: consider removing `'static`: `&u8`
error: aborting due to 18 previous errors
2018-01-16 16:06:27 +00:00