2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb84.C
blob0d09059b32dc62b24779f3d0c7a67a616fde358c
1 // { dg-do run  }
2 // Error: Internal Compiler error on GCC 2.7.2.3 & EGCS 1998/05/23 snapshot.
4 class A {
5 public:
6         enum { ONE, TWO, THREE };
7 };
9 template <const unsigned c1,const unsigned c2,const unsigned c3>
10 void f() {
14 int
15 main()
17         f<A::ONE,A::TWO,A::THREE>();