/* 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) */ #include #include #include "test.hpp" struct foo; template struct is_substitution_failure_expand_args_right { template static auto test(...) -> std::true_type; template* = nullptr> static auto test(int) -> std::false_type; static constexpr bool value = decltype(test(0))::value; }; template void assert_sfinae_expand_args_right() { CT_ASSERT(is_substitution_failure_expand_args_right::value); } int main() { assert_sfinae_expand_args_right(); assert_sfinae_expand_args_right(); assert_sfinae_expand_args_right(); assert_sfinae_expand_args_right(); assert_sfinae_expand_args_right(); assert_sfinae_expand_args_right(); assert_sfinae_expand_args_right(); auto lambda = [](){}; assert_sfinae_expand_args_right(); assert_sfinae_expand_args_right(); assert_sfinae_expand_args_right(); assert_sfinae_expand_args_right(); }