No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / lookup / new1.C
blobb9d0bef88f667626e513ee5314d2988910bfdd46
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(unsigned s, int* p);
8   int* e = new(&i) int;                    // { dg-error "no matching function" }
9   int* f = new int;
10   return 0;
13 // { dg-excess-errors "operator new" }