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