don't suggest eliding 'static on associated consts
This commit is contained in:
parent
b835877d2e
commit
73f2ba5ded
2 changed files with 2 additions and 36 deletions
|
|
@ -78,23 +78,5 @@ error: Constants have by default a `'static` lifetime
|
|||
24 | const VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR Consider removing 'static.
|
||||
| -^^^^^^^-------- help: consider removing `'static`: `&[u8; 1]`
|
||||
|
||||
error: Constants have by default a `'static` lifetime
|
||||
--> $DIR/const_static_lifetime.rs:40:23
|
||||
|
|
||||
40 | const TRAIT_VAR: &'static str;
|
||||
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
||||
|
||||
error: Constants have by default a `'static` lifetime
|
||||
--> $DIR/const_static_lifetime.rs:44:22
|
||||
|
|
||||
44 | const IMPL_VAR: &'static str = "var";
|
||||
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
||||
|
||||
error: Constants have by default a `'static` lifetime
|
||||
--> $DIR/const_static_lifetime.rs:48:23
|
||||
|
|
||||
48 | const TRAIT_VAR: &'static str = "foo";
|
||||
| -^^^^^^^---- help: consider removing `'static`: `&str`
|
||||
|
||||
error: aborting due to 16 previous errors
|
||||
error: aborting due to 13 previous errors
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue