// // Test for BOOST_TEST_TRAIT_SAME // // Copyright 2014, 2019 Peter Dimov // // Distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt // #include struct X { typedef int type; }; template struct Y { typedef T1 type; }; int main() { BOOST_TEST_TRAIT_SAME(X, X); BOOST_TEST_TRAIT_SAME(void, void); BOOST_TEST_TRAIT_SAME(char[1], char[1]); BOOST_TEST_TRAIT_SAME(char[], char[]); BOOST_TEST_TRAIT_SAME(void(), void()); BOOST_TEST_TRAIT_SAME(X::type, X::type); BOOST_TEST_TRAIT_SAME(X::type, Y::type); BOOST_TEST_TRAIT_SAME(Y, Y); BOOST_TEST_TRAIT_SAME(Y::type, void); return boost::report_errors(); }