mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 12:30:03 +00:00
5 lines
104 B
Rust
5 lines
104 B
Rust
enum List<T> { Cons(T, List<T>), Nil }
|
|
//~^ ERROR recursive type `List` has infinite size
|
|
|
|
fn main() {}
|