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