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