2023-07-27 11:40:22 +00:00
|
|
|
//@no-rustfix: overlapping suggestions
|
2019-09-25 17:21:08 +00:00
|
|
|
// these are rustfixable, but run-rustfix tests cannot handle them
|
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
const VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR: Consider removing 'static
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: constants have by default a `'static` lifetime
|
|
|
|
//~| NOTE: `-D clippy::redundant-static-lifetimes` implied by `-D warnings`
|
|
|
|
//~| ERROR: constants have by default a `'static` lifetime
|
2019-09-25 17:21:08 +00:00
|
|
|
|
|
|
|
const VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])];
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: constants have by default a `'static` lifetime
|
|
|
|
//~| ERROR: constants have by default a `'static` lifetime
|
2019-09-25 17:21:08 +00:00
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
static STATIC_VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR: Consider removing 'static
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: statics have by default a `'static` lifetime
|
|
|
|
//~| ERROR: statics have by default a `'static` lifetime
|
2019-09-25 17:21:08 +00:00
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
static STATIC_VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR: Consider removing 'static
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: statics have by default a `'static` lifetime
|
|
|
|
//~| ERROR: statics have by default a `'static` lifetime
|
2019-09-25 17:21:08 +00:00
|
|
|
|
|
|
|
static STATIC_VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])];
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: statics have by default a `'static` lifetime
|
|
|
|
//~| ERROR: statics have by default a `'static` lifetime
|
2019-09-25 17:21:08 +00:00
|
|
|
|
|
|
|
fn main() {}
|