aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/crash8.C
blob: 701452ab6c2937caca95c179580db372f3926ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Build don't link: 
// GROUPS passed old-abort
template<int a, int b>
class Elvis
{// ERROR - in template.*
} ;

template<int a>
class Elvis<0>// ERROR - .*
{
   int geta() { return a ; }
} ;