aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic93.C
blob: 7d8c3298e618bbe488917bdb24adf3c890c50cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/35297
// { dg-options "-std=c++0x" }

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

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