mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-27 06:02:23 +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() {}
|