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