mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 08:24:31 +00:00
12 lines
225 B
Rust
12 lines
225 B
Rust
// run-pass
|
|
// aux-build:struct_variant_xc_aux.rs
|
|
// pretty-expanded FIXME #23616
|
|
|
|
extern crate struct_variant_xc_aux;
|
|
|
|
use struct_variant_xc_aux::Enum::StructVariant;
|
|
|
|
pub fn main() {
|
|
let _ = StructVariant { arg: 1 };
|
|
}
|