mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +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 };
|
|
}
|