]> git.proxmox.com Git - rustc.git/blob - src/test/ui/structs-enums/newtype-struct-xc.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / structs-enums / newtype-struct-xc.rs
1 // run-pass
2 // aux-build:newtype_struct_xc.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate newtype_struct_xc;
7
8 pub fn main() {
9 let _ = newtype_struct_xc::Au(2);
10 }