aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/enum9.C
blob: 5ab8e8b58bc0c8b58fd0a58f2dfb57d926a58559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't link:

template <typename _CharT>
class _Format_cache
{
public:  
  enum {   
    _S_digits,   _S_digits_end = _S_digits+10,
    _S_xdigits = _S_digits_end
  };
};

template class _Format_cache<int>;