blob: 1f85505172938c4dab4d18f0ecf1f2fef9321a59 [file] [log] [blame]
fn f() -> impl Sized {
enum E {
//~^ ERROR: recursive type
V(E),
}
unimplemented!()
}