rust/src/test/codegen/issue-47278.rs
2021-01-13 07:49:45 -05:00

9 lines
181 B
Rust

// -C no-prepopulate-passes
#![crate_type="staticlib"]
#[repr(C)]
pub struct Foo(u64);
// CHECK: define {{.*}} @foo(
#[no_mangle]
pub extern "C" fn foo(_: Foo) -> Foo { loop {} }