mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
9 lines
302 B
Rust
9 lines
302 B
Rust
enum Foo {
|
|
enum Bar { Baz }, //~ ERROR `enum` definition cannot be nested inside `enum`
|
|
struct Quux { field: u8 }, //~ ERROR `struct` definition cannot be nested inside `enum`
|
|
union Wibble { field: u8 }, //~ ERROR `union` definition cannot be nested inside `enum`
|
|
Bat,
|
|
}
|
|
|
|
fn main() { }
|