]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/variadic117.C
AArch64: Improve costing of ctz
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic117.C
1 // { dg-do compile { target c++11 } }
2
3 template <class T> struct A { typedef T type; };
4
5 template <template <class...> class T, class... U>
6 void f(typename T<U...>::type);
7
8 int main()
9 {
10 f<A,int>(42);
11 }