921e5a0eb4
From-SVN: r14840
13 lines
194 B
C
13 lines
194 B
C
// 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 ; }
|
|
} ;
|