aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/special/class.free/p1.cpp
blob: bf99a2782bd5ed8470f1187d5bc1006f927efbf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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}}
  }
};