mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 15:11:30 +00:00
Final .stderr for const_static_lifetime
.
This commit is contained in:
parent
0928168a79
commit
acdd93a5cc
1 changed files with 8 additions and 8 deletions
|
@ -2,7 +2,7 @@ error: Constants have by default a `'static` lifetime
|
|||
--> $DIR/const_static_lifetime.rs:4:17
|
||||
|
|
||||
4 | const VAR_ONE: &'static str = "Test constant #1"; // ERROR Consider removing 'static.
|
||||
| ^^^^^^^ help: consider removing `'static`: `&str`
|
||||
| ^^^^^^^ help: consider removing `'static`
|
||||
|
|
||||
= note: `-D const-static-lifetime` implied by `-D warnings`
|
||||
|
||||
|
@ -10,41 +10,41 @@ error: Constants have by default a `'static` lifetime
|
|||
--> $DIR/const_static_lifetime.rs:8:21
|
||||
|
|
||||
8 | const VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR Consider removing 'static
|
||||
| ^^^^^^^ help: consider removing `'static`: `&str`
|
||||
| ^^^^^^^ help: consider removing `'static`
|
||||
|
||||
error: Constants have by default a `'static` lifetime
|
||||
--> $DIR/const_static_lifetime.rs:10:32
|
||||
|
|
||||
10 | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
|
||||
| ^^^^^^^ help: consider removing `'static`: `&str`
|
||||
| ^^^^^^^ help: consider removing `'static`
|
||||
|
||||
error: Constants have by default a `'static` lifetime
|
||||
--> $DIR/const_static_lifetime.rs:10:47
|
||||
|
|
||||
10 | const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR Consider removing 'static
|
||||
| ^^^^^^^ help: consider removing `'static`: `&str`
|
||||
| ^^^^^^^ help: consider removing `'static`
|
||||
|
||||
error: Constants have by default a `'static` lifetime
|
||||
--> $DIR/const_static_lifetime.rs:12:30
|
||||
|
|
||||
12 | const VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR Consider removing 'static
|
||||
| ^^^^^^^ help: consider removing `'static`: `&str`
|
||||
| ^^^^^^^ help: consider removing `'static`
|
||||
|
||||
error: Constants have by default a `'static` lifetime
|
||||
--> $DIR/const_static_lifetime.rs:14:17
|
||||
|
|
||||
14 | const VAR_SIX: &'static u8 = &5;
|
||||
| ^^^^^^^ help: consider removing `'static`: `&u8`
|
||||
| ^^^^^^^ help: consider removing `'static`
|
||||
|
||||
error: Constants have by default a `'static` lifetime
|
||||
--> $DIR/const_static_lifetime.rs:16:39
|
||||
|
|
||||
16 | const VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])];
|
||||
| ^^^^^^^ help: consider removing `'static`: `&str`
|
||||
| ^^^^^^^ help: consider removing `'static`
|
||||
|
||||
error: Constants have by default a `'static` lifetime
|
||||
--> $DIR/const_static_lifetime.rs:18:20
|
||||
|
|
||||
18 | const VAR_HEIGHT: &'static Foo = &Foo {};
|
||||
| ^^^^^^^ help: consider removing `'static`: `&Foo`
|
||||
| ^^^^^^^ help: consider removing `'static`
|
||||
|
||||
|
|
Loading…
Reference in a new issue