mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
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 };
|
|
}
|