mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
13 lines
217 B
Rust
13 lines
217 B
Rust
// 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() {}
|