blob: 441d386ad81c99a965489584245a5df98f2668cd (
plain)
1
2
3
4
5
6
7
8
9
10
|
// PR c++/79470
// { dg-do compile { target c++11 } }
template < const int&... > struct AA;
template < > struct AA<> { };
template < const int& II, const int&... Is >
struct AA<II,Is...> { };
|