summaryrefslogtreecommitdiff
path: root/tests/headers/complex.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/complex.h')
-rw-r--r--tests/headers/complex.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/headers/complex.h b/tests/headers/complex.h
deleted file mode 100644
index 04877a4e..00000000
--- a/tests/headers/complex.h
+++ /dev/null
@@ -1,16 +0,0 @@
-
-#define COMPLEX_TEST(ty_, name_) \
- struct Test##name_ { \
- ty_ _Complex mMember; \
- \
- }; \
- struct Test##name_##Ptr { \
- ty_ _Complex* mMember; \
- };
-
-COMPLEX_TEST(double, Double)
-COMPLEX_TEST(float, Float)
-
-// FIXME: 128-byte-aligned in some machines
-// which we can't support right now in Rust.
-// COMPLEX_TEST(long double, LongDouble)