mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
106 lines
4.7 KiB
Text
106 lines
4.7 KiB
Text
error: constants have by default a `'static` lifetime
|
|
--> $DIR/redundant_static_lifetimes.rs:9:17
|
|
|
|
|
LL | const VAR_ONE: &'static str = "Test constant #1"; // ERROR Consider removing 'static.
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
|
|
|
|
= note: `-D clippy::redundant-static-lifetimes` implied by `-D warnings`
|
|
|
|
error: constants have by default a `'static` lifetime
|
|
--> $DIR/redundant_static_lifetimes.rs:13:21
|
|
|
|
|
LL | const VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR Consider removing 'static
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
|
|
|
error: constants have by default a `'static` lifetime
|
|
--> $DIR/redundant_static_lifetimes.rs:15:32
|
|
|
|
|
LL | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
|
|
|
error: constants have by default a `'static` lifetime
|
|
--> $DIR/redundant_static_lifetimes.rs:15:47
|
|
|
|
|
LL | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
|
|
|
error: constants have by default a `'static` lifetime
|
|
--> $DIR/redundant_static_lifetimes.rs:17:17
|
|
|
|
|
LL | const VAR_SIX: &'static u8 = &5;
|
|
| -^^^^^^^--- help: consider removing `'static`: `&u8`
|
|
|
|
error: constants have by default a `'static` lifetime
|
|
--> $DIR/redundant_static_lifetimes.rs:19:20
|
|
|
|
|
LL | const VAR_HEIGHT: &'static Foo = &Foo {};
|
|
| -^^^^^^^---- help: consider removing `'static`: `&Foo`
|
|
|
|
error: constants have by default a `'static` lifetime
|
|
--> $DIR/redundant_static_lifetimes.rs:21:19
|
|
|
|
|
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:23:19
|
|
|
|
|
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:25:19
|
|
|
|
|
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:27:25
|
|
|
|
|
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:31:29
|
|
|
|
|
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:33: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:35: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:37:27
|
|
|
|
|
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:39:27
|
|
|
|
|
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:41:27
|
|
|
|
|
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:68:16
|
|
|
|
|
LL | static V: &'static u8 = &17;
|
|
| -^^^^^^^--- help: consider removing `'static`: `&u8`
|
|
|
|
error: aborting due to 17 previous errors
|
|
|