Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-ttp9.C
blob63e3f2684aae8494a2c3996ef5834090d4e4a314
1 // PR c++/86986
2 // { dg-do compile { target c++11 } }
4 template<class... T>
5 struct X {
6     template<template<T...> class...>
7     struct Y { };
8 };
10 using type = X<int>::Y<>;