2020-08-11 08:43:21 -05:00
|
|
|
error: constants have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:6:17
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | const VAR_ONE: &'static str = "Test constant #1"; // ERROR: Consider removing 'static.
|
2018-10-06 11:18:06 -05:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
|
|
|
|
|
2019-06-13 16:47:06 -05:00
|
|
|
= note: `-D clippy::redundant-static-lifetimes` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::redundant_static_lifetimes)]`
|
2017-10-20 08:56:26 -05:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: constants have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:10:21
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | const VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR: Consider removing 'static
|
2018-10-06 11:18:06 -05:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
2017-10-20 08:56:26 -05:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: constants have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:12:32
|
2017-10-20 08:56:26 -05:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR: Consider removing 'static
|
2018-01-16 09:16:43 -06:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
2017-10-20 08:56:26 -05:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: constants have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:12:47
|
2017-10-20 08:56:26 -05:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR: Consider removing 'static
|
2018-01-16 09:16:43 -06:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
2017-10-20 08:56:26 -05:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: constants have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:14:17
|
2017-10-20 08:56:26 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | const VAR_SIX: &'static u8 = &5;
|
2018-01-16 09:16:43 -06:00
|
|
|
| -^^^^^^^--- help: consider removing `'static`: `&u8`
|
2017-10-20 08:56:26 -05:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: constants have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:16:20
|
2017-10-20 08:56:26 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | const VAR_HEIGHT: &'static Foo = &Foo {};
|
2018-01-16 09:16:43 -06:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&Foo`
|
2017-10-20 08:56:26 -05:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: constants have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:18:19
|
2017-11-18 09:10:28 -06:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | const VAR_SLICE: &'static [u8] = b"Test constant #1"; // ERROR: Consider removing 'static.
|
2018-01-16 09:16:43 -06:00
|
|
|
| -^^^^^^^----- help: consider removing `'static`: `&[u8]`
|
2017-11-18 09:10:28 -06:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: constants have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:20:19
|
2017-11-18 09:10:28 -06:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | const VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR: Consider removing 'static.
|
2018-01-16 09:16:43 -06:00
|
|
|
| -^^^^^^^--------- help: consider removing `'static`: `&(u8, u8)`
|
2017-11-18 09:10:28 -06:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: constants have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:22:19
|
2017-11-18 09:10:28 -06:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | const VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR: Consider removing 'static.
|
2018-01-16 09:16:43 -06:00
|
|
|
| -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]`
|
2017-11-18 09:10:28 -06:00
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: statics have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:24:25
|
2019-06-11 14:32:38 -05:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | static STATIC_VAR_ONE: &'static str = "Test static #1"; // ERROR: Consider removing 'static.
|
2019-06-11 14:32:38 -05:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: statics have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:28:29
|
2019-06-11 14:32:38 -05:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | static STATIC_VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR: Consider removing 'static
|
2019-06-11 14:32:38 -05:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: statics have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:30:25
|
2019-06-11 14:32:38 -05:00
|
|
|
|
|
|
|
|
LL | static STATIC_VAR_SIX: &'static u8 = &5;
|
|
|
|
| -^^^^^^^--- help: consider removing `'static`: `&u8`
|
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: statics have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:32:28
|
2019-06-11 14:32:38 -05:00
|
|
|
|
|
|
|
|
LL | static STATIC_VAR_HEIGHT: &'static Foo = &Foo {};
|
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&Foo`
|
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: statics have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:34:27
|
2019-06-11 14:32:38 -05:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | static STATIC_VAR_SLICE: &'static [u8] = b"Test static #3"; // ERROR: Consider removing 'static.
|
2019-06-11 14:32:38 -05:00
|
|
|
| -^^^^^^^----- help: consider removing `'static`: `&[u8]`
|
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: statics have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:36:27
|
2019-06-11 14:32:38 -05:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | static STATIC_VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR: Consider removing 'static.
|
2019-06-11 14:32:38 -05:00
|
|
|
| -^^^^^^^--------- help: consider removing `'static`: `&(u8, u8)`
|
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
error: statics have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:38:27
|
2019-06-11 14:32:38 -05:00
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
LL | static STATIC_VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR: Consider removing 'static.
|
2019-06-11 14:32:38 -05:00
|
|
|
| -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]`
|
|
|
|
|
2022-10-23 08:18:45 -05:00
|
|
|
error: statics have by default a `'static` lifetime
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:40:31
|
2022-12-17 07:12:54 -06:00
|
|
|
|
|
|
|
|
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
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/redundant_static_lifetimes.rs:69:16
|
2022-10-23 08:18:45 -05:00
|
|
|
|
|
|
|
|
LL | static V: &'static u8 = &17;
|
|
|
|
| -^^^^^^^--- help: consider removing `'static`: `&u8`
|
|
|
|
|
2022-12-17 07:12:54 -06:00
|
|
|
error: aborting due to 18 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|