2017-10-20 13:56:26 +00:00
|
|
|
error: Constants have by default a `'static` lifetime
|
2017-10-20 13:53:39 +00:00
|
|
|
--> $DIR/const_static_lifetime.rs:4:17
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
2017-10-20 13:53:39 +00:00
|
|
|
4 | const VAR_ONE: &'static str = "Test constant #1"; // ERROR Consider removing 'static.
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::const-static-lifetime` implied by `-D warnings`
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
|
|
error: Constants have by default a `'static` lifetime
|
2017-10-20 13:53:39 +00:00
|
|
|
--> $DIR/const_static_lifetime.rs:8:21
|
|
|
|
|
|
|
|
|
8 | const VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR Consider removing 'static
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
|
|
error: Constants have by default a `'static` lifetime
|
2017-10-20 13:53:39 +00:00
|
|
|
--> $DIR/const_static_lifetime.rs:10:32
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
2017-10-20 13:53:39 +00:00
|
|
|
10 | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
|
|
error: Constants have by default a `'static` lifetime
|
2017-10-20 13:53:39 +00:00
|
|
|
--> $DIR/const_static_lifetime.rs:10:47
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
2017-10-20 13:53:39 +00:00
|
|
|
10 | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
2017-10-20 13:56:26 +00:00
|
|
|
|
2017-11-18 15:10:28 +00:00
|
|
|
error: Constants have by default a `'static` lifetime
|
|
|
|
--> $DIR/const_static_lifetime.rs:12:18
|
|
|
|
|
|
|
|
|
12 | const VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR Consider removing 'static
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^------------------ help: consider removing `'static`: `&[&[&'static str]]`
|
2017-11-18 15:10:28 +00:00
|
|
|
|
2017-10-20 13:56:26 +00:00
|
|
|
error: Constants have by default a `'static` lifetime
|
2017-10-20 13:53:39 +00:00
|
|
|
--> $DIR/const_static_lifetime.rs:12:30
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
2017-10-20 13:53:39 +00:00
|
|
|
12 | const VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR Consider removing 'static
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
|
|
error: Constants have by default a `'static` lifetime
|
2017-10-20 13:53:39 +00:00
|
|
|
--> $DIR/const_static_lifetime.rs:14:17
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
2017-10-20 13:53:39 +00:00
|
|
|
14 | const VAR_SIX: &'static u8 = &5;
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^--- help: consider removing `'static`: `&u8`
|
2017-10-20 13:56:26 +00:00
|
|
|
|
2017-11-18 15:10:28 +00:00
|
|
|
error: Constants have by default a `'static` lifetime
|
|
|
|
--> $DIR/const_static_lifetime.rs:16:29
|
|
|
|
|
|
|
|
|
16 | const VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])];
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^--------------- help: consider removing `'static`: `&[&'static str]`
|
2017-11-18 15:10:28 +00:00
|
|
|
|
2017-10-20 13:56:26 +00:00
|
|
|
error: Constants have by default a `'static` lifetime
|
2017-10-20 13:53:39 +00:00
|
|
|
--> $DIR/const_static_lifetime.rs:16:39
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
2017-10-20 13:53:39 +00:00
|
|
|
16 | const VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])];
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
|
|
error: Constants have by default a `'static` lifetime
|
2017-10-20 13:53:39 +00:00
|
|
|
--> $DIR/const_static_lifetime.rs:18:20
|
2017-10-20 13:56:26 +00:00
|
|
|
|
|
2017-10-20 13:53:39 +00:00
|
|
|
18 | const VAR_HEIGHT: &'static Foo = &Foo {};
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^---- help: consider removing `'static`: `&Foo`
|
2017-10-20 13:56:26 +00:00
|
|
|
|
2017-11-18 15:10:28 +00:00
|
|
|
error: Constants have by default a `'static` lifetime
|
|
|
|
--> $DIR/const_static_lifetime.rs:20:19
|
|
|
|
|
|
|
|
|
20 | const VAR_SLICE: &'static [u8] = b"Test constant #1"; // ERROR Consider removing 'static.
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^----- help: consider removing `'static`: `&[u8]`
|
2017-11-18 15:10:28 +00:00
|
|
|
|
|
|
|
error: Constants have by default a `'static` lifetime
|
|
|
|
--> $DIR/const_static_lifetime.rs:22:19
|
|
|
|
|
|
|
|
|
22 | const VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR Consider removing 'static.
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^--------- help: consider removing `'static`: `&(u8, u8)`
|
2017-11-18 15:10:28 +00:00
|
|
|
|
|
|
|
error: Constants have by default a `'static` lifetime
|
|
|
|
--> $DIR/const_static_lifetime.rs:24:19
|
|
|
|
|
|
|
|
|
24 | const VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR Consider removing 'static.
|
2018-01-16 15:16:43 +00:00
|
|
|
| -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]`
|
2017-11-18 15:10:28 +00:00
|
|
|
|
2018-02-06 18:22:34 +00:00
|
|
|
error: aborting due to 13 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|