blob: 0e4ba45aa20e1c0bf161850e4766ce20d4bdf299 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// PR c++/52233
// { dg-do compile { target c++11 } }
template <typename t>
struct foo
{
template <template <typename...> class... xs>
using type = int;
};
template <typename t, template <typename...> class... xs>
struct bar
{
using type = typename foo<t>::template type<xs...>;
};
bar<int, foo> x;
|