aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/new1.C
blob: ae1121339cf5c7f7f7bfc701a8f8a7efc5d35842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile }
// Origin: <igodard at rational dot com>
// PR c++/2518: operator new must not be looked up in local scope

int main() {
  int i;
  void* operator new(__SIZE_TYPE__ s, int* p);
  int* e = new(&i) int;                    // { dg-error "no matching function" }
  int* f = new int;
  return 0;
}

// { dg-error "candidate" "" { target *-*-* } 0 }