rust/tests/ui/structs-enums/cross-crate-newtype-struct-...

13 lines
214 B
Rust

//@ run-pass
//@ aux-build:newtype_struct_xc.rs
extern crate newtype_struct_xc;
pub fn main() {
let x = newtype_struct_xc::Au(21);
match x {
newtype_struct_xc::Au(n) => assert_eq!(n, 21)
}
}