OSDN Git Service

PR c++/2518
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / lookup / new1.C
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
4
5 int main() {
6   int i;
7   void* operator new(unsigned s, int* p);
8   int* e = new(&i) int;                    // { dg-error "no matching function" }
9   int* f = new int;
10   return 0;
11 }
12
13 // { dg-excess-errors "operator new" "list of candidates" }