aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb84.C
blob: dce51d86d52b53a91a2ce8cf0637bca98f45bba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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>();
}