]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-3656.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[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 extern crate libc;
16 use libc::{c_uint, uint32_t, c_void};
17
18 pub struct KEYGEN {
19     hash_algorithm: [c_uint; 2],
20     count: uint32_t,
21     salt: *const c_void,
22     salt_size: uint32_t,
23 }
24
25 extern {
26     // Bogus signature, just need to test if it compiles.
27     pub fn malloc(data: KEYGEN);
28 }
29
30 pub fn main() {
31 }