mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
11 lines
168 B
Rust
11 lines
168 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()) {}
|
|
}
|