Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
rustdoc-ui
/
infinite-recursive-type.rs
blob: 32793fc4f76c05c6236611db6ba3cf829ae37611 [
file
]
enum
E
{
//~^ ERROR recursive type `E` has infinite size
V
(
E
),
}