mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-07 23:32:20 +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 {} }
|