Add another testcase.

llvm-svn: 221833
This commit is contained in:
Richard Smith 2014-11-12 23:43:08 +00:00
parent 96d71c3936
commit 316c6dc1cb
1 changed files with 9 additions and 0 deletions

View File

@ -191,4 +191,13 @@ namespace PR19372 {
using U = BindBack<Z, int, int>::apply<char>;
using U = Z<char, int, int>;
namespace BetterReduction {
template<typename ...> struct S;
template<typename ...A> using X = S<A...>;
template<typename ...A> using Y = X<A..., A...>;
using T = Y<int>;
using T = S<int, int>;
}
}