Sign in
rust
/
rust
/
a0f398e89df9767c93c81cd58d44fdba071258a8
/
.
/
tests
/
ui
/
structs-enums
/
newtype-struct-xc.rs
blob: 138bf4878f0010d914ec2d259806c2db61647a9e [
file
] [
log
] [
blame
]
//@ run-pass
//@ aux-build:newtype_struct_xc.rs
extern
crate newtype_struct_xc
;
pub
fn
main
()
{
let
_
=
newtype_struct_xc
::
Au
(
2
);
}