blob: bf99a2782bd5ed8470f1187d5bc1006f927efbf2 [file] [log] [blame]
// RUN: clang-cc -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 nonstatic member function}}
}
void *operator new[](size_t) {
return this; // expected-error {{invalid use of 'this' outside of a nonstatic member function}}
}
};