1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// PR c++/25342 template < typename eval > struct tpl_seq_search { typedef typename eval::enum_type Enum; template < Enum first, Enum last > struct range { }; template < Enum val > struct range<val,val> { }; }; struct xxx { typedef int enum_type; tpl_seq_search<xxx>::range<0, 1> a; };