mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-05 11:47:13 +00:00
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!()
|
|
}
|