2019-10-28 19:00:00 -05:00
|
|
|
// build-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 08:51:35 -05:00
|
|
|
#![allow(improper_ctypes)]
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2013-04-14 00:15:46 -05:00
|
|
|
struct TwoDoubles {
|
2013-09-26 01:26:09 -05:00
|
|
|
r: f64,
|
|
|
|
i: f64
|
2013-04-08 08:21:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
2013-04-14 00:15:46 -05:00
|
|
|
fn rust_dbg_extern_identity_TwoDoubles(arg1: TwoDoubles) -> TwoDoubles;
|
2013-04-08 08:21:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {}
|