about summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/extern-fn-with-packed-struct/test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make-fulldeps/extern-fn-with-packed-struct/test.rs')
-rw-r--r--src/test/run-make-fulldeps/extern-fn-with-packed-struct/test.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/run-make-fulldeps/extern-fn-with-packed-struct/test.rs b/src/test/run-make-fulldeps/extern-fn-with-packed-struct/test.rs
deleted file mode 100644
index 2f261efb510..00000000000
--- a/src/test/run-make-fulldeps/extern-fn-with-packed-struct/test.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-#[repr(C, packed)]
-#[derive(Copy, Clone, Debug, PartialEq)]
-struct Foo {
-    a: i8,
-    b: i16,
-    c: i8,
-}
-
-#[link(name = "test", kind = "static")]
-extern "C" {
-    fn foo(f: Foo) -> Foo;
-}
-
-fn main() {
-    unsafe {
-        let a = Foo { a: 1, b: 2, c: 3 };
-        let b = foo(a);
-        assert_eq!(a, b);
-    }
-}