mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-22 14:15:14 +00:00
9 lines
150 B
Rust
9 lines
150 B
Rust
enum Foo {
|
|
Variant { x: usize }
|
|
}
|
|
|
|
fn main() {
|
|
let f = Foo::Variant(42);
|
|
//~^ ERROR expected value, found struct variant `Foo::Variant`
|
|
}
|