summaryrefslogtreecommitdiff
path: root/clang/test/CXX/special/class.free/p1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CXX/special/class.free/p1.cpp')
-rw-r--r--clang/test/CXX/special/class.free/p1.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/test/CXX/special/class.free/p1.cpp b/clang/test/CXX/special/class.free/p1.cpp
new file mode 100644
index 0000000..5c0240b
--- /dev/null
+++ b/clang/test/CXX/special/class.free/p1.cpp
@@ -0,0 +1,11 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+#include <stddef.h>
+
+struct A {
+ void *operator new(size_t) {
+ return this; // expected-error {{invalid use of 'this' outside of a non-static member function}}
+ }
+ void *operator new[](size_t) {
+ return this; // expected-error {{invalid use of 'this' outside of a non-static member function}}
+ }
+};