summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic108.C
blob: 3ad5af4571755218ea9feb294d410f27034ce3e6 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/48736
// { dg-options -std=c++0x }

template<class T>
T&& create();

template<class T, class... Args,
 class = decltype(T{create<Args>()...}) // Line X
>
char f(int);