blob: 9c3411cf3def11ab5f2bf3d91ff6281493d3e1f3 [file] [log] [blame]
// { dg-do compile { target c++11 } }
template<typename...> struct A;
template<template<int> class... T> struct A<T<0>...>
{
template<int> struct B {};
B<0> b;
};