rust/src/test/ui/issues/issue-17431-4.rs
2018-12-25 21:08:33 -07: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() {}