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