FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb84.C
blobdce51d86d52b53a91a2ce8cf0637bca98f45bba8
1 // Error: Internal Compiler error on GCC 2.7.2.3 & EGCS 1998/05/23 snapshot.
3 class A {
4 public:
5         enum { ONE, TWO, THREE };
6 };
8 template <const unsigned c1,const unsigned c2,const unsigned c3>
9 void f() {
13 int
14 main()
16         f<A::ONE,A::TWO,A::THREE>();