aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic121.C
blob: 21121962d5154a366bb62def52833b8c8ccbe113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/51507
// { dg-do compile { target c++11 } }

template<typename ...>
struct foo { typedef void type; };
template<typename ...Ts>
auto g(Ts ...ts)->
  typename foo<decltype(ts)...>::type
{}
int main() {
  g(42);
}