mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
13 lines
317 B
Rust
13 lines
317 B
Rust
#![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`
|
|
}
|