Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-38763.rs
blob: 05cd648dcfe97c60bc717fca381df4b2e3d6dcf6 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ ignore-emscripten
#[
repr
(
C
)]
pub
struct
Foo
(
i128
);
#[
no_mangle
]
#[
allow
(
improper_ctypes_definitions
)]
pub
extern
"C"
fn
foo
(
x
:
Foo
)
->
Foo
{
x
}
fn
main
()
{
foo
(
Foo
(
1
));
}