rust/tests/ui/structs-enums/newtype-struct-xc.rs

11 lines
172 B
Rust

//@ run-pass
//@ aux-build:newtype_struct_xc.rs
//@ pretty-expanded FIXME #23616
extern crate newtype_struct_xc;
pub fn main() {
let _ = newtype_struct_xc::Au(2);
}