[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / tc1 / dr48.C
blob19c1738782235fcece512210253e6a01c8a72722
1 // { dg-do link }
2 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3 // DR48: Definitions of unused static members 
5 struct A {
6   static const int size = 10;
7   int array[size];
8 };
10 int main() {
11   A a;
12   return 0;