// Copyright Andrey Semashev 2014. // // Use, modification and distribution is subject to // 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 #include #include #include using boost::is_same; using boost::iterators::minimum_category; int main(int, char*[]) { BOOST_TEST_TRAIT_TRUE((is_same::type, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same::type, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same::type, std::random_access_iterator_tag>)); return boost::report_errors(); }