2019-09-25 17:21:08 +00:00
|
|
|
#![allow(unused)]
|
|
|
|
|
2017-10-20 13:51:35 +00:00
|
|
|
#[derive(Debug)]
|
2022-03-27 12:41:09 +00:00
|
|
|
struct Foo;
|
2017-10-20 13:51:35 +00:00
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
const VAR_ONE: &'static str = "Test constant #1"; // ERROR: Consider removing 'static.
|
2017-10-20 13:51:35 +00:00
|
|
|
|
|
|
|
const VAR_TWO: &str = "Test constant #2"; // This line should not raise a warning.
|
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
const VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR: Consider removing 'static
|
2017-10-20 13:51:35 +00:00
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
const VAR_FOUR: (&str, (&str, &'static str), &'static str) = ("on", ("th", "th"), "on"); // ERROR: Consider removing 'static
|
2017-10-20 13:51:35 +00:00
|
|
|
|
|
|
|
const VAR_SIX: &'static u8 = &5;
|
|
|
|
|
|
|
|
const VAR_HEIGHT: &'static Foo = &Foo {};
|
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
const VAR_SLICE: &'static [u8] = b"Test constant #1"; // ERROR: Consider removing 'static.
|
2017-11-18 15:10:28 +00:00
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
const VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR: Consider removing 'static.
|
2017-11-18 15:10:28 +00:00
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
const VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR: Consider removing 'static.
|
2017-11-18 15:10:28 +00:00
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
static STATIC_VAR_ONE: &'static str = "Test static #1"; // ERROR: Consider removing 'static.
|
2019-06-11 19:32:38 +00:00
|
|
|
|
|
|
|
static STATIC_VAR_TWO: &str = "Test static #2"; // This line should not raise a warning.
|
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
static STATIC_VAR_THREE: &[&'static str] = &["one", "two"]; // ERROR: Consider removing 'static
|
2019-06-11 19:32:38 +00:00
|
|
|
|
|
|
|
static STATIC_VAR_SIX: &'static u8 = &5;
|
|
|
|
|
|
|
|
static STATIC_VAR_HEIGHT: &'static Foo = &Foo {};
|
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
static STATIC_VAR_SLICE: &'static [u8] = b"Test static #3"; // ERROR: Consider removing 'static.
|
2019-06-11 19:32:38 +00:00
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
static STATIC_VAR_TUPLE: &'static (u8, u8) = &(1, 2); // ERROR: Consider removing 'static.
|
2019-06-11 19:32:38 +00:00
|
|
|
|
2023-04-20 15:19:36 +00:00
|
|
|
static STATIC_VAR_ARRAY: &'static [u8; 1] = b"T"; // ERROR: Consider removing 'static.
|
2019-06-11 19:32:38 +00:00
|
|
|
|
2022-12-01 02:29:48 +00:00
|
|
|
static mut STATIC_MUT_SLICE: &'static mut [u32] = &mut [0];
|
|
|
|
|
2017-10-20 13:51:35 +00:00
|
|
|
fn main() {
|
|
|
|
let false_positive: &'static str = "test";
|
2022-12-01 02:29:48 +00:00
|
|
|
|
|
|
|
unsafe {
|
|
|
|
STATIC_MUT_SLICE[0] = 0;
|
|
|
|
}
|
2017-10-20 13:51:35 +00:00
|
|
|
}
|
2018-02-02 07:03:21 +00:00
|
|
|
|
|
|
|
trait Bar {
|
|
|
|
const TRAIT_VAR: &'static str;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
const IMPL_VAR: &'static str = "var";
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Bar for Foo {
|
|
|
|
const TRAIT_VAR: &'static str = "foo";
|
|
|
|
}
|
2022-10-21 21:35:39 +00:00
|
|
|
|
2022-11-19 12:50:02 +00:00
|
|
|
#[clippy::msrv = "1.16"]
|
2022-10-21 21:35:39 +00:00
|
|
|
fn msrv_1_16() {
|
|
|
|
static V: &'static u8 = &16;
|
|
|
|
}
|
|
|
|
|
2022-11-19 12:50:02 +00:00
|
|
|
#[clippy::msrv = "1.17"]
|
2022-10-21 21:35:39 +00:00
|
|
|
fn msrv_1_17() {
|
|
|
|
static V: &'static u8 = &17;
|
|
|
|
}
|