1 // Copyright 2002 The Trustees of Indiana University. 2 3 // Use, modification and distribution is subject to the Boost Software 4 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 5 // http://www.boost.org/LICENSE_1_0.txt) 6 7 // Boost.MultiArray Library 8 // Authors: Ronald Garcia 9 // Jeremy Siek 10 // Andrew Lumsdaine 11 // See http://www.boost.org/libs/multi_array for documentation. 12 13 // 14 // fail_ref_criterator.cpp 15 // const_reverse_iterator/reverse_iterator conversion test 16 // 17 18 #include <boost/multi_array.hpp> 19 20 #include <boost/core/lightweight_test.hpp> 21 22 main()23int main() { 24 typedef boost::multi_array_ref<int,3> array_ref; 25 26 typedef array_ref::reverse_iterator riterator1; 27 typedef array_ref::const_reverse_iterator criterator1; 28 29 // Fail! ILLEGAL conversion from const_reverse_iterator to reverse_iterator 30 riterator1 in = criterator1(); 31 32 return boost::report_errors(); 33 } 34