forked from OSchip/llvm-project
12 lines
350 B
C++
12 lines
350 B
C++
// RUN: clang-cc -fsyntax-only -verify %s
|
|
#include <stddef.h>
|
|
|
|
struct A {
|
|
void operator delete(size_t) {
|
|
(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}}
|
|
}
|
|
};
|