blob: 7d8c3298e618bbe488917bdb24adf3c890c50cd6 [file] [log] [blame]
// PR c++/35297
// { dg-options "-std=c++0x" }
template <class T=int, class... ARGS>
struct test2 {};
int main()
{
test2<> a;
return 0;
}