1
可変長テンプレートパラメータを持つクラスの中で可変長テンプレートパラメータを持つクラスを特化するにはどうすればよいですか?私:可変長テンプレート内のC++特殊化可変長テンプレート
template < typename ... >
struct test_class
{
template < typename ... >
struct s { };
};
template < >
template < typename ... ts >
struct test_class< ts ... >::s<int> { }; // doesn't work
これも可能ですか?