blob: f73c8b5126c522df66efd930818601f3ce7a3303 (
plain)
1
2
3
4
5
6
7
8
|
// PR c++/52008
// { dg-do compile { target c++11 } }
template <int I, typename T, typename... Ts>
struct A;
template<typename... Ts>
struct A<0, Ts...>; // { dg-error "not more specialized" }
|