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 #2 from boostcpp at gmail dot com  2010-08-07 12:18 -------
My bad. Never mind. 

(In reply to comment #1)
> I also noticed gcc accept this code.
> Should I create separate bug report?
> 
> template < typename ... Types >
> class Foo { };
> 
> // Params is template parameter.
> template < typename ... Types, typename Params >
> class Foo< typename template Types < Params > ... >
> { } ;
> 
> int main()
> {
>     // gcc accepts this.
>     // actually tuple must take exactly one template argument.
>     Foo< std::tuple<int, int>, std::tuple<int, float, double> > 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]