summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic-nested1.C
blob: abfb49a712cad878349daab7c4ab2db861735e59 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/71833
// { dg-do compile { target c++11 } }

template < typename ... Ts > struct A 
{
  template < Ts ..., typename ... Us > struct B {};
};

A <>::B < int > e;