This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/45225] gcc accepts ill-formed template code combining Variadic Templates and Partial specialization



------- Comment #4 from boostcpp at gmail dot com  2010-08-07 14:17 -------
It doesn't compile the following code which I think well-formed.

#include <tuple>

template < typename ... Types >
class Foo ;

template <
    template < typename ...  > class ... Types,
    typename ... Params
>
class Foo< Types< Params... > ... >
{ } ;


int main()
{
    Foo< std::tuple<int>, std::tuple<int, int> > a ;
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45225


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]