blob: 05cd648dcfe97c60bc717fca381df4b2e3d6dcf6 [file] [log] [blame]
//@ 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));
}