2019-09-25 17:21:08 +00:00
|
|
|
// these are rustfixable, but run-rustfix tests cannot handle them
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
const VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR: Consider removing 'static
|
2019-09-25 17:21:08 +00:00
|
|
|
|
|
|
|
const VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])];
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
static STATIC_VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR: Consider removing 'static
|
2019-09-25 17:21:08 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
static STATIC_VAR_FIVE: &'static [&[&'static str]] = &[&["test"], &["other one"]]; // ERROR: Consider removing 'static
|
2019-09-25 17:21:08 +00:00
|
|
|
|
|
|
|
static STATIC_VAR_SEVEN: &[&(&str, &'static [&'static str])] = &[&("one", &["other one"])];
|
|
|
|
|
|
|
|
fn main() {}
|