summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb84.C
blob: 0d09059b32dc62b24779f3d0c7a67a616fde358c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { dg-do run  }
// Error: Internal Compiler error on GCC 2.7.2.3 & EGCS 1998/05/23 snapshot.

class A {
public:
        enum { ONE, TWO, THREE };
};

template <const unsigned c1,const unsigned c2,const unsigned c3>
void f() {

}

int
main()
{
        f<A::ONE,A::TWO,A::THREE>();
}