1 // PR c++/67318
2 // { dg-do compile { target c++11 } }
3 
4 template<signed...>
5 struct MyStruct1;
6 
7 template<unsigned...>
8 struct MyStruct2;
9 
10 template<short...>
11 struct MyStruct3;
12 
13 template<long...>
14 struct MyStruct4;
15