]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-3656.rs
Remove Ty prefix from Ty{Adt|Array|Slice|RawPtr|Ref|FnDef|FnPtr|Dynamic|Closure|Gener...
[rust.git] / src / test / run-pass / issue-3656.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Issue #3656
12 // Incorrect struct size computation in the FFI, because of not taking
13 // the alignment of elements into account.
14
15 // pretty-expanded FIXME #23616
16 // ignore-wasm32-bare no libc to test with
17
18 #![feature(libc)]
19
20 extern crate libc;
21 use libc::{c_uint, uint32_t, c_void};
22
23 pub struct KEYGEN {
24     hash_algorithm: [c_uint; 2],
25     count: uint32_t,
26     salt: *const c_void,
27     salt_size: uint32_t,
28 }
29
30 extern {
31     // Bogus signature, just need to test if it compiles.
32     pub fn malloc(data: KEYGEN);
33 }
34
35 pub fn main() {
36 }