1
Fork 0
rust/src/test/codegen/issue-47278.rs

10 lines
177 B
Rust
Raw Normal View History

// -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 {} }