blob: 555d4e9cfa944a2ae83475305e77648ed4d2579c [file] [log] [blame]
// 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 nonstatic member function}}
}
void operator delete[](void*) {
(void)this; // expected-error {{invalid use of 'this' outside of a nonstatic member function}}
}
};