blob: 63a1103a8613864628c5d44e574b9a1a5c140c27 [file] [log] [blame]
// PR c++/35297
// { dg-do compile { target c++11 } }
template <class T=int, class... ARGS>
struct test2 {};
int main()
{
test2<> a;
return 0;
}