mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
9 lines
138 B
Rust
9 lines
138 B
Rust
//@ edition:2015
|
|
enum SomeEnum {
|
|
E
|
|
}
|
|
|
|
fn main() {
|
|
E { name: "foobar" }; //~ ERROR cannot find struct, variant or union type `E`
|
|
}
|