mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
79 lines
1.5 KiB
Rust
79 lines
1.5 KiB
Rust
// run-rustfix
|
|
|
|
#![allow(unused_variables, dead_code)]
|
|
#![warn(clippy::equatable_if_let)]
|
|
|
|
use std::cmp::Ordering;
|
|
|
|
#[derive(PartialEq)]
|
|
enum Enum {
|
|
TupleVariant(i32, u64),
|
|
RecordVariant { a: i64, b: u32 },
|
|
UnitVariant,
|
|
Recursive(Struct),
|
|
}
|
|
|
|
#[derive(PartialEq)]
|
|
struct Struct {
|
|
a: i32,
|
|
b: bool,
|
|
}
|
|
|
|
enum NotPartialEq {
|
|
A,
|
|
B,
|
|
}
|
|
|
|
enum NotStructuralEq {
|
|
A,
|
|
B,
|
|
}
|
|
|
|
impl PartialEq for NotStructuralEq {
|
|
fn eq(&self, _: &NotStructuralEq) -> bool {
|
|
false
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let a = 2;
|
|
let b = 3;
|
|
let c = Some(2);
|
|
let d = Struct { a: 2, b: false };
|
|
let e = Enum::UnitVariant;
|
|
let f = NotPartialEq::A;
|
|
let g = NotStructuralEq::A;
|
|
|
|
// true
|
|
|
|
if a == 2 {}
|
|
if a.cmp(&b) == Ordering::Greater {}
|
|
if c == Some(2) {}
|
|
if d == (Struct { a: 2, b: false }) {}
|
|
if e == Enum::TupleVariant(32, 64) {}
|
|
if e == (Enum::RecordVariant { a: 64, b: 32 }) {}
|
|
if e == Enum::UnitVariant {}
|
|
if (e, &d) == (Enum::UnitVariant, &Struct { a: 2, b: false }) {}
|
|
|
|
// false
|
|
|
|
if let 2 | 3 = a {}
|
|
if let x @ 2 = a {}
|
|
if let Some(3 | 4) = c {}
|
|
if let Struct { a, b: false } = d {}
|
|
if let Struct { a: 2, b: x } = d {}
|
|
if let NotPartialEq::A = f {}
|
|
if g == NotStructuralEq::A {}
|
|
if let Some(NotPartialEq::A) = Some(f) {}
|
|
if Some(g) == Some(NotStructuralEq::A) {}
|
|
|
|
macro_rules! m1 {
|
|
(x) => {
|
|
"abc"
|
|
};
|
|
}
|
|
if "abc" == m1!(x) {
|
|
println!("OK");
|
|
}
|
|
}
|