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