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