summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs-enums/newtype-struct-xc.rs
blob: 0c6466d97fc948f0e88acb1c257f96b293214b7e (plain)
1
2
3
4
5
6
7
8
9
10
// 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);
}