Sign in
fuchsia
/
third_party
/
rust
/
5a2fceefd312ec027bdeaa89ebefbe4c33d94de1
/
.
/
tests
/
ui
/
abi
/
large-byval-align.rs
blob: c1de841178fcd8def3e0cfafa17955b9a2c0bcaa [
file
]
//@ compile-flags: -Copt-level=0
//@ only-x86_64
//@ build-pass
#[
repr
(
align
(
536870912
))]
pub
struct
A
(
i64
);
#[
allow
(
improper_ctypes_definitions
)]
pub
extern
"C"
fn
foo
(
x
:
A
)
{}
fn
main
()
{
foo
(
A
(
0
));
}