1 2 3 4 5 6 7 8 9 10
// PR c++/58466 // { dg-require-effective-target c++11 } template<char, char...> struct A; template<typename> struct B; template<char... C> struct B<A<C...>> {}; B<A<'X'>> b;