1 /* Copyright 2016 Joaquin M Lopez Munoz. 2 * Distributed under the Boost Software License, Version 1.0. 3 * (See accompanying file LICENSE_1_0.txt or copy at 4 * http://www.boost.org/LICENSE_1_0.txt) 5 * 6 * See http://www.boost.org/libs/poly_collection for library home page. 7 */ 8 9 #include <boost/core/lightweight_test.hpp> 10 #include "test_insertion.hpp" 11 main()12int main() 13 { 14 test_insertion(); 15 return boost::report_errors(); 16 } 17