aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/no-exceptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/no-exceptions.cpp')
-rw-r--r--test/SemaCXX/no-exceptions.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/SemaCXX/no-exceptions.cpp b/test/SemaCXX/no-exceptions.cpp
new file mode 100644
index 000000000000..019e25c97842
--- /dev/null
+++ b/test/SemaCXX/no-exceptions.cpp
@@ -0,0 +1,21 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+
+// Various tests for -fno-exceptions
+
+typedef __SIZE_TYPE__ size_t;
+
+namespace test0 {
+ // rdar://problem/7878149
+ class Foo {
+ public:
+ void* operator new(size_t x);
+ private:
+ void operator delete(void *x);
+ };
+
+ void test() {
+ // Under -fexceptions, this does access control for the associated
+ // 'operator delete'.
+ (void) new Foo();
+ }
+}