1 // Copyright Andrey Semashev 2014. 2 // 3 // Use, modification and distribution is subject to 4 // the Boost Software License, Version 1.0. (See accompanying 5 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 7 #include <boost/iterator/minimum_category.hpp> 8 9 using boost::iterators::minimum_category; 10 11 struct A {}; 12 struct B {}; 13 main(int,char * [])14int main(int, char*[]) 15 { 16 minimum_category<A, B>::type cat; 17 18 return 0; 19 } 20