mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 04:17:57 +00:00
19 lines
237 B
Rust
19 lines
237 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
enum Foo {
|
|
Bar {
|
|
a: isize,
|
|
b: isize
|
|
},
|
|
Baz {
|
|
c: f64,
|
|
d: f64
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let _x = Foo::Bar { a: 2, b: 3 };
|
|
}
|