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