From cbeebc5b2cde6cb4f6cec9cd0cdfbd5d2c15dc39 Mon Sep 17 00:00:00 2001 From: Eduard-Mihai Burtescu Date: Mon, 15 Jan 2018 01:18:48 +0200 Subject: rustc_trans: take into account primitives larger than 8 bytes. --- src/test/run-pass/issue-38763.rs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/test/run-pass/issue-38763.rs (limited to 'src/test') diff --git a/src/test/run-pass/issue-38763.rs b/src/test/run-pass/issue-38763.rs new file mode 100644 index 00000000000..4bf9513d64f --- /dev/null +++ b/src/test/run-pass/issue-38763.rs @@ -0,0 +1,21 @@ +// Copyright 2018 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 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#![feature(i128_type)] + +#[repr(C)] +pub struct Foo(i128); + +#[no_mangle] +pub extern "C" fn foo(x: Foo) -> Foo { x } + +fn main() { + foo(Foo(1)); +} -- cgit 1.4.1-3-g733a5