Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / static11.C
blob3e489eac5b1acda73e47e95dae86abf7ba1b3300
1 // PR c++/19826
3 template<typename T> struct A
5   static const T i = 1;
6   char a[i];
7 };