blob: 83a63a88b724603e70f40cc5468b3dc454974ad9 [file] [log] [blame]
use std::sync::Mutex;
struct Foo { foo: Mutex<Option<Foo>> }
//~^ ERROR recursive type `Foo` has infinite size
impl Foo { fn bar(&self) {} }
fn main() {}