1 // PR c++/33213
2 // { dg-do compile { target c++11 } }
3 // { dg-options -fnew-ttp-matching }
4 
5 template<template<typename> class...> struct A;
6 
7 template<template<typename...> class... B> struct A<B...> {};
8