diff options
| author | bors <bors@rust-lang.org> | 2015-10-15 00:14:17 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-10-15 00:14:17 +0000 |
| commit | eafe106ef3dcf35b05edc2fb7c835ea83431fd34 (patch) | |
| tree | d8bc39880722125515d0409ca2640b1c0aecb1de /src/test | |
| parent | d20fe128a3101b03a3e933625706c407804af1b7 (diff) | |
| parent | 95721d3b136c1459f309cd107e43c4edc474c052 (diff) | |
| download | rust-eafe106ef3dcf35b05edc2fb7c835ea83431fd34.tar.gz rust-eafe106ef3dcf35b05edc2fb7c835ea83431fd34.zip | |
Auto merge of #29012 - tari:issue-28676, r=luqmana
Fixes #28676. There doesn't seem to be a good way to add a test for this, but I tested the repro in #28676 and confirmed it now yields the correct result.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-pass/issue-28676.rs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/test/run-pass/issue-28676.rs b/src/test/run-pass/issue-28676.rs new file mode 100644 index 00000000000..b8d43c392dd --- /dev/null +++ b/src/test/run-pass/issue-28676.rs @@ -0,0 +1,40 @@ +// 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. +// + +#[derive(Copy, Clone)] +pub struct Quad { a: u64, b: u64, c: u64, d: u64 } + +mod rustrt { + use super::Quad; + + #[link(name = "rust_test_helpers")] + 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(); +} |
