1 // PR c++/52725
2 
3 struct A { };
4 
5 const int n = 42;
6 
f()7 void f()
8 {
9   A** p = new (A*[n]);
10 }
11