2019-10-29 00:00:00 +00:00
|
|
|
//@ build-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 15:51:35 +02:00
|
|
|
#![allow(improper_ctypes)]
|
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2013-04-14 13:15:46 +08:00
|
|
|
struct TwoDoubles {
|
2013-09-26 02:26:09 -04:00
|
|
|
r: f64,
|
|
|
|
|
i: f64
|
2013-04-08 21:21:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
2013-04-14 13:15:46 +08:00
|
|
|
fn rust_dbg_extern_identity_TwoDoubles(arg1: TwoDoubles) -> TwoDoubles;
|
2013-04-08 21:21:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn main() {}
|