mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-27 13:29:25 +00:00
7 lines
84 B
Rust
7 lines
84 B
Rust
enum Foo { Bar }
|
|
|
|
fn main() {
|
|
Foo::Bar.a;
|
|
//~^ no field `a` on type `Foo`
|
|
}
|