rust/tests/ui/structs-enums/struct-rec/issue-17431-4.rs

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() {}