Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
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
()
{}