blob: 67376cc4f233b1014dc0302e1a9d67a99b30ca67 (
plain)
1
2
3
4
5
6
7
|
// PR c++/33213
// { dg-do compile { target c++11 } }
// { dg-options -fnew-ttp-matching }
template<template<typename> class...> struct A;
template<template<typename...> class... B> struct A<B...> {};
|