blob: e72bd3509127d1ccd5dffe0a02b95b3e25e564fe [file] [log] [blame]
// PR c++/54859
// { dg-options -std=c++11 }
template<unsigned N>
using Num = int;
template<typename... Types>
using Count = Num<sizeof...(Types)>;
Count<int, char, void> i;