[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / new1.C
blob3c3b02b3d81e18025722ead55e74a4cf60f94ebb
1 // { dg-do compile }
2 // Origin: <igodard at rational dot com>
3 // PR c++/2518: operator new must not be looked up in local scope
5 int main() {
6   int i;
7   void* operator new(__SIZE_TYPE__ s, int* p);
8   int* e = new(&i) int;                    // { dg-error "no matching function" }
9   int* f = new int;
10   return 0;
13 // { dg-message "operator new|candidate expects" "" { target *-*-* } 0 }