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