Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
extern
/
extern-rust.rs
blob: 7cea8be59215fc44ce99ac6bf75b711a435006a6 [
file
] [
log
] [
blame
]
// run-pass
// pretty-expanded FIXME #23616
#[
repr
(
C
)]
pub
struct
Foo
(
u32
);
// ICE trigger, bad handling of differing types between rust and external ABIs
pub
extern
"C"
fn
bar
()
->
Foo
{
Foo
(
0
)
}
fn
main
()
{}