2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2013-09-09 23:21:36 -04:00
|
|
|
// aux-build:struct_variant_xc_aux.rs
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate struct_variant_xc_aux;
|
2013-09-09 18:44:31 -04:00
|
|
|
|
2014-11-25 10:00:46 -08:00
|
|
|
use struct_variant_xc_aux::Enum::StructVariant;
|
2013-09-09 18:44:31 -04:00
|
|
|
|
2014-01-03 15:30:54 -08:00
|
|
|
pub fn main() {
|
2014-06-21 23:16:31 +02:00
|
|
|
let _ = StructVariant { arg: 1 };
|
2013-09-09 18:44:31 -04:00
|
|
|
}
|