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 
main()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;
11 }
12 
13 // { dg-message "operator new|candidate expects" "" { target *-*-* } 0 }
14