mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
9 lines
136 B
Rust
9 lines
136 B
Rust
#[derive(Default)]
|
|
struct A<T> {
|
|
a: Vec<A<T>>,
|
|
b: T,
|
|
}
|
|
|
|
fn main() {
|
|
if let Ok(_) = Ok::<_, ()>(A::<String>::default()) {}
|
|
}
|