summaryrefslogtreecommitdiff
path: root/tests/headers/constructors_1_33.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/constructors_1_33.hpp')
-rw-r--r--tests/headers/constructors_1_33.hpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/headers/constructors_1_33.hpp b/tests/headers/constructors_1_33.hpp
deleted file mode 100644
index 7c6262d4..00000000
--- a/tests/headers/constructors_1_33.hpp
+++ /dev/null
@@ -1,16 +0,0 @@
-// bindgen-flags: --rust-target 1.33
-
-class TestOverload {
- // This one shouldnt' be generated.
- TestOverload();
-public:
- /// Calling this should use `mem::unintialized()` and not `MaybeUninit()` as only rust 1.36 includes that.
- TestOverload(int);
- /// Calling this should use `mem::unintialized()` and not `MaybeUninit()` as only rust 1.36 includes that.
- TestOverload(double);
-};
-
-class TestPublicNoArgs {
-public:
- TestPublicNoArgs();
-};