1 // PR c++/35297
2 // { dg-do compile { target c++11 } }
3 
4 template <class T=int, class... ARGS>
5 struct test2 {};
6 
main()7 int main()
8 {
9         test2<> a;
10         return 0;
11 }
12