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

template <class T=int, class... ARGS> 
struct test2 {};

int main()
{
        test2<> a;
        return 0;
}