| Submitter | Paolo Carlini |
|---|---|
| Date | Oct. 4, 2012, 11:52 p.m. |
| Message ID | <506E2125.6090309@oracle.com> |
| Download | mbox | patch |
| Permalink | /patch/189367/ |
| State | New |
| Headers | show |
Comments
Patch
Index: g++.dg/cpp0x/alias-decl-23.C =================================================================== --- g++.dg/cpp0x/alias-decl-23.C (revision 0) +++ g++.dg/cpp0x/alias-decl-23.C (working copy) @@ -0,0 +1,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;