summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/new3.C
blob: 36afb5b48e28b623954a9a1e76925dd99dd604a9 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/98249

#include <new>
struct Incomplete;
template<class T> struct Holder { T t; };
Holder<Incomplete> *p;
void test() {
    ::new (p) int;
    new (p) int;
}