1 // PR c++/20073
2 
3 template<int> struct A
4 {
5     A();
6 };
7 
8 const A<0> x[] = { A<0>() };
9