#![allow(unused)]
#![warn(clippy::ref_option_ref)]
//@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.

static THRESHOLD: i32 = 10;
static REF_THRESHOLD: &Option<&i32> = &Some(&THRESHOLD);
//~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Opt
//~| NOTE: `-D clippy::ref-option-ref` implied by `-D warnings`
const CONST_THRESHOLD: &i32 = &10;
const REF_CONST: &Option<&i32> = &Some(CONST_THRESHOLD);
//~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Opt

type RefOptRefU32<'a> = &'a Option<&'a u32>;
//~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Opt
type RefOptRef<'a, T> = &'a Option<&'a T>;
//~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Opt

fn foo(data: &Option<&u32>) {}
//~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Opt

fn bar(data: &u32) -> &Option<&u32> {
    //~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Opt
    &None
}

struct StructRef<'a> {
    data: &'a Option<&'a u32>,
    //~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to
}

struct StructTupleRef<'a>(u32, &'a Option<&'a u32>);
//~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Opt

enum EnumRef<'a> {
    Variant1(u32),
    Variant2(&'a Option<&'a u32>),
    //~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to
}

trait RefOptTrait {
    type A;
    fn foo(&self, _: Self::A);
}

impl RefOptTrait for u32 {
    type A = &'static Option<&'static Self>;
    //~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to

    fn foo(&self, _: Self::A) {}
}

fn main() {
    let x: &Option<&u32> = &None;
    //~^ ERROR: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to
}

fn issue9682(arg: &Option<&mut String>) {
    // Should not lint, as the inner ref is mutable making it non `Copy`
    println!("{arg:?}");
}