about summary refs log tree commit diff
path: root/tests/ui/structs-enums/newtype-struct-xc.rs
blob: 138bf4878f0010d914ec2d259806c2db61647a9e (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass
//@ aux-build:newtype_struct_xc.rs


extern crate newtype_struct_xc;

pub fn main() {
    let _ = newtype_struct_xc::Au(2);
}