mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
11 lines
195 B
Rust
11 lines
195 B
Rust
//@ run-pass
|
|
//@ aux-build:struct_variant_xc_aux.rs
|
|
|
|
extern crate struct_variant_xc_aux;
|
|
|
|
use struct_variant_xc_aux::Enum::StructVariant;
|
|
|
|
pub fn main() {
|
|
let _ = StructVariant { arg: 1 };
|
|
}
|