rust/tests/ui/crashes/ice-7169.fixed

14 lines
313 B
Rust
Raw Normal View History

2023-07-27 06:40:22 -05:00
#![allow(clippy::needless_if)]
#[derive(Default)]
struct A<T> {
a: Vec<A<T>>,
b: T,
}
fn main() {
if Ok::<_, ()>(A::<String>::default()).is_ok() {}
//~^ ERROR: redundant pattern matching, consider using `is_ok()`
//~| NOTE: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
2023-07-27 06:40:22 -05:00
}