69de8fbbeb
This reverts commit 9c46173895
.
10 lines
152 B
Rust
10 lines
152 B
Rust
// check-pass
|
|
|
|
fn f() -> impl Sized {
|
|
// rustdoc doesn't care that this is infinitely sized
|
|
enum E {
|
|
V(E),
|
|
}
|
|
unimplemented!()
|
|
}
|