1 2 3 4 5 6 7 8 9 10
// PR c++/54859 // { dg-do compile { target c++11 } } template<unsigned N> using Num = int; template<typename... Types> using Count = Num<sizeof...(Types)>; Count<int, char, void> i;