Files
rust/tests/ui/ref_option_ref.rs

67 lines
1.4 KiB
Rust
Raw Normal View History

#![allow(unused)]
2020-10-12 23:58:59 +02:00
#![warn(clippy::ref_option_ref)]
2023-07-27 11:40:22 +00:00
//@no-rustfix
// This lint is not tagged as run-rustfix because automatically
// changing the type of a variable would also means changing
// all usages of this variable to match and This is not handled
// by this lint.
2020-10-15 21:56:56 +02:00
static THRESHOLD: i32 = 10;
static REF_THRESHOLD: &Option<&i32> = &Some(&THRESHOLD);
2025-02-11 17:57:08 +01:00
//~^ ref_option_ref
2020-10-15 21:56:56 +02:00
const CONST_THRESHOLD: &i32 = &10;
const REF_CONST: &Option<&i32> = &Some(CONST_THRESHOLD);
2025-02-11 17:57:08 +01:00
//~^ ref_option_ref
2020-10-15 21:56:56 +02:00
type RefOptRefU32<'a> = &'a Option<&'a u32>;
2025-02-11 17:57:08 +01:00
//~^ ref_option_ref
2020-10-15 21:56:56 +02:00
type RefOptRef<'a, T> = &'a Option<&'a T>;
2025-02-11 17:57:08 +01:00
//~^ ref_option_ref
2020-10-15 21:56:56 +02:00
fn foo(data: &Option<&u32>) {}
2025-02-11 17:57:08 +01:00
//~^ ref_option_ref
2020-10-15 21:56:56 +02:00
fn bar(data: &u32) -> &Option<&u32> {
2025-02-12 23:44:38 +01:00
//~^ ref_option_ref
2025-02-11 17:57:08 +01:00
2020-10-15 21:56:56 +02:00
&None
}
struct StructRef<'a> {
data: &'a Option<&'a u32>,
2025-02-11 17:57:08 +01:00
//~^ ref_option_ref
2020-10-15 21:56:56 +02:00
}
struct StructTupleRef<'a>(u32, &'a Option<&'a u32>);
2025-02-11 17:57:08 +01:00
//~^ ref_option_ref
2020-10-15 21:56:56 +02:00
enum EnumRef<'a> {
Variant1(u32),
Variant2(&'a Option<&'a u32>),
2025-02-11 17:57:08 +01:00
//~^ ref_option_ref
2020-10-15 21:56:56 +02:00
}
trait RefOptTrait {
type A;
fn foo(&self, _: Self::A);
}
impl RefOptTrait for u32 {
type A = &'static Option<&'static Self>;
2025-02-11 17:57:08 +01:00
//~^ ref_option_ref
2020-10-15 21:56:56 +02:00
fn foo(&self, _: Self::A) {}
}
2020-10-12 23:58:59 +02:00
fn main() {
let x: &Option<&u32> = &None;
2025-02-11 17:57:08 +01:00
//~^ ref_option_ref
2020-10-12 23:58:59 +02:00
}
fn issue9682(arg: &Option<&mut String>) {
// Should not lint, as the inner ref is mutable making it non `Copy`
println!("{arg:?}");
}