blob: 5d13da20e71058369b33e238d8cbab5316877ac8 [file] [log] [blame]
// PR c++/23491
struct X
{
int m;
};
void f(int n)
{
const X *p = new const X[1] () ;
}