blob: 213837c3a3e9f6bb909bdb837330c2972d564e72 [file] [log] [blame]
// PR c++/52725
struct A { };
const int n = 42;
void f()
{
A** p = new (A*[n]);
}