/*<- Copyright Barrett Adair 2016 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http ://boost.org/LICENSE_1_0.txt) ->*/ //[ expand_args_right #include namespace ct = boost::callable_traits; void f(int, char); template struct foo{}; int main() { using args = ct::expand_args_right_t; static_assert(std::is_same>::value, ""); } //]