mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
181 B
Rust
10 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 {} }
|