Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / enum8.C
blobe62428f2c31b3d241fc6cef1b9e5fc64d876792d
1 // { dg-do assemble  }
3 template <int I>
4 void f();
6 template <>
7 void f<4>() {}
9 template <class T>
10 struct S
12   enum E { a = 1, b = a + 3 };
15 int main()
17   f<S<int>::b>();