aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/pr31993.C
blob: 9c3411cf3def11ab5f2bf3d91ff6281493d3e1f3 (plain)
1
2
3
4
5
6
7
8
9
// { 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;
};