summaryrefslogtreecommitdiffstats
path: root/libcxxabi/test/catch_member_pointer_nullptr.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxxabi/test/catch_member_pointer_nullptr.pass.cpp')
-rw-r--r--libcxxabi/test/catch_member_pointer_nullptr.pass.cpp71
1 files changed, 71 insertions, 0 deletions
diff --git a/libcxxabi/test/catch_member_pointer_nullptr.pass.cpp b/libcxxabi/test/catch_member_pointer_nullptr.pass.cpp
new file mode 100644
index 00000000000..73e6c7b9e75
--- /dev/null
+++ b/libcxxabi/test/catch_member_pointer_nullptr.pass.cpp
@@ -0,0 +1,71 @@
+//===----------------- catch_member_pointer_nullptr.cpp -------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include <cassert>
+
+#if __has_feature(cxx_nullptr)
+
+struct A
+{
+ const int i;
+ int j;
+};
+
+typedef const int A::*md1;
+typedef int A::*md2;
+
+void test1()
+{
+ try
+ {
+ throw nullptr;
+ assert(false);
+ }
+ catch (md2)
+ {
+ }
+ catch (md1)
+ {
+ assert(false);
+ }
+}
+
+void test2()
+{
+ try
+ {
+ throw nullptr;
+ assert(false);
+ }
+ catch (md1)
+ {
+ }
+ catch (md2)
+ {
+ assert(false);
+ }
+}
+
+#else
+
+void test1()
+{
+}
+
+void test2()
+{
+}
+
+#endif
+
+int main()
+{
+ test1();
+ test2();
+}
OpenPOWER on IntegriCloud