Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
codegen
/
issues
/
issue-47278.rs
blob: 4f0a5bdf36f4266c12a1cb6e548316c495a43ebb [
file
] [
log
] [
blame
] [
edit
]
// -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
{}
}