1 template<typename _Value>
2 struct __traits
3 {
4   static const int __digits = 8;
5   static const _Value __min = 0;
6 };
7 
8 template<typename _Value>
9 const _Value __traits<_Value>::__min;
10