2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / array7.C
blobc045a349dd32d35b9a021c066095ba9919b77b1f
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 template <typename T>
5 struct S {
6   enum E { e = 5 };
7   static int i[e];
8 };
10 template <typename T>
11 int S<T>::i[S<T>::e];