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