mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
8 lines
163 B
Rust
8 lines
163 B
Rust
enum Foo {}
|
|
type FooAlias = Foo;
|
|
|
|
fn main() {
|
|
let u = FooAlias { value: 0 };
|
|
//~^ ERROR expected struct, variant or union type, found enum `Foo` [E0071]
|
|
}
|