1// PR c++/19826
2
3template<typename T> struct A
4{
5  static const T i = 1;
6  char a[i];
7};
8
9