rust/tests/ui/issues/issue-17431-4.rs
2023-01-11 09:32:08 +00:00

9 lines
197 B
Rust

use std::marker;
struct Foo<T> { foo: Option<Option<Foo<T>>>, marker: marker::PhantomData<T> }
//~^ ERROR recursive type `Foo` has infinite size
impl<T> Foo<T> { fn bar(&self) {} }
fn main() {}