Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / cpp0x / variadic93.C
blob63a1103a8613864628c5d44e574b9a1a5c140c27
1 // PR c++/35297
2 // { dg-do compile { target c++11 } }
4 template <class T=int, class... ARGS> 
5 struct test2 {};
7 int main()
9         test2<> a;
10         return 0;