2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / parse2.C
blob80a9e38f4825a43b56bfb76e9ee3adb169c4c847
1 /* PR c++/67 */
2 /* { dg-do compile } */
4 template <class T> struct foo {
5    static const int bar [3];
6 };
7 // Used to fail if 2+1 rather than 3.
8 template <class T> const int foo<T>::bar [2+1] = { 0, 0, 0 };