summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-7169.rs
blob: b09e6f3846327a80c809e8d539f7e8673eecd5ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(clippy::needless_if)]

#[derive(Default)]
struct A<T> {
    a: Vec<A<T>>,
    b: T,
}

fn main() {
    if let Ok(_) = Ok::<_, ()>(A::<String>::default()) {}
    //~^ ERROR: redundant pattern matching, consider using `is_ok()`
    //~| NOTE: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
}