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