mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-06 04:06:31 +00:00
10 lines
95 B
Rust
10 lines
95 B
Rust
// check-pass
|
|
|
|
fn f() -> impl Sized {
|
|
enum E {
|
|
V(E),
|
|
}
|
|
|
|
unimplemented!()
|
|
}
|