1 // run-pass
2 // aux-build:newtype_struct_xc.rs
3 
4 // pretty-expanded FIXME #23616
5 
6 extern crate newtype_struct_xc;
7 
main()8 pub fn main() {
9     let _ = newtype_struct_xc::Au(2);
10 }
11