2015-10-14 15:25:38 -05:00
|
|
|
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2017-10-22 22:01:00 -05:00
|
|
|
|
2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-08-31 08:02:01 -05:00
|
|
|
#![allow(improper_ctypes)]
|
|
|
|
|
2017-10-22 22:01:00 -05:00
|
|
|
// ignore-wasm32-bare no libc to test ffi with
|
2015-10-14 15:25:38 -05:00
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct Quad { a: u64, b: u64, c: u64, d: u64 }
|
|
|
|
|
|
|
|
mod rustrt {
|
|
|
|
use super::Quad;
|
|
|
|
|
2016-11-23 18:09:51 -06:00
|
|
|
#[link(name = "rust_test_helpers", kind = "static")]
|
2015-10-14 15:25:38 -05:00
|
|
|
extern {
|
|
|
|
pub fn get_c_many_params(_: *const (), _: *const (),
|
|
|
|
_: *const (), _: *const (), f: Quad) -> u64;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test() {
|
|
|
|
unsafe {
|
|
|
|
let null = std::ptr::null();
|
|
|
|
let q = Quad {
|
|
|
|
a: 1,
|
|
|
|
b: 2,
|
|
|
|
c: 3,
|
|
|
|
d: 4
|
|
|
|
};
|
|
|
|
assert_eq!(rustrt::get_c_many_params(null, null, null, null, q), q.c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
test();
|
|
|
|
}
|