// Copyright Peter Dimov 2015 // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.tt.org/LICENSE_1_0.txt) #ifdef TEST_STD # include #else # include #endif #include "test.hpp" #include "check_type.hpp" #include struct X {}; struct Y: X {}; TT_TEST_BEGIN(common_type_6) { // binary case BOOST_CHECK_TYPE3(tt::common_type::type, void); BOOST_CHECK_TYPE3(tt::common_type::type, int); BOOST_CHECK_TYPE3(tt::common_type::type, int); BOOST_CHECK_TYPE3(tt::common_type::type, int); BOOST_CHECK_TYPE3(tt::common_type::type, X); BOOST_CHECK_TYPE3(tt::common_type::type, X); BOOST_CHECK_TYPE3(tt::common_type::type, X); BOOST_CHECK_TYPE3(tt::common_type::type, X); BOOST_CHECK_TYPE3(tt::common_type::type, X); BOOST_CHECK_TYPE3(tt::common_type::type, X); BOOST_CHECK_TYPE3(tt::common_type::type, X); BOOST_CHECK_TYPE3(tt::common_type::type, X); } TT_TEST_END