rust/src/test/codegen/issue-47278.rs
2018-12-25 21:08:33 -07:00

10 lines
177 B
Rust

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