Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
extern
/
extern-rust.rs
blob: b4a4a49810e669b85275e9faf84b82cdc085a429 [
file
] [
log
] [
blame
]
//@ run-pass
#[
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
()
{}