blob: 4e4a95f819d01622393677c9671b4fa902f0180f [file]
#![warn(clippy::equatable_if_let)]
#![feature(const_trait_impl, const_cmp)]
fn issue15376() {
enum ConstEq {
A,
B,
}
const impl PartialEq for ConstEq {
fn eq(&self, _other: &Self) -> bool {
true
}
}
const C: ConstEq = ConstEq::A;
// `impl PartialEq` is const... but we still suggest `matches!` for now
// TODO: detect this and suggest `=`
const _: u32 = if let ConstEq::A = C { 0 } else { 1 };
//~^ ERROR: this pattern matching can be expressed using `matches!`
const _: u32 = if let Some(ConstEq::A) = Some(C) { 0 } else { 1 };
//~^ ERROR: this pattern matching can be expressed using `matches!`
}