Sign in
◑
Theme
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
enum
/
unsized-field-in-enum-variant.rs
blob: a2640e1ba5b130dadc7514bbf72dc0e9f5044a79 [
file
] [
edit
]
//! Regression test for <https://github.com/rust-lang/rust/issues/35988>
enum
E
{
V
([
Box
<
E
>]),
//~^ ERROR the size for values of type
}
fn
main
()
{}