exception_fail.cpp 344 B

123456789101112
  1. //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
  2. //Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #include <boost/exception/exception.hpp>
  5. void
  6. tester( boost::exception & x )
  7. {
  8. throw x; //must not compile.
  9. }