aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb103.C
blob: ef25fb46634e53580c984d15916a5b769644fd8e (plain)
1
2
3
4
5
6
7
8
9
10
11
// Build don't link:  
// Error: Internal compiler error in 2.7.2 & EGCS 1.0.0

template <int nlimb, int i>
inline unsigned f (unsigned* ptr);
template <int nlimb>
inline unsigned f<nlimb,nlimb> (unsigned* ptr)
{                        //ERROR - partial specialization of function?
  return 1;
}