mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 11:13:43 +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() { }
|