(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lookup/
new3.C
// 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;
}