quick_exit_fail.cpp 315 B

1234567891011121314151617
  1. // Test for quick_exit.hpp
  2. //
  3. // Copyright 2018 Peter Dimov
  4. //
  5. // Distributed under the Boost Software License, Version 1.0.
  6. // See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt
  8. #include <boost/core/quick_exit.hpp>
  9. int main()
  10. {
  11. boost::quick_exit( 1 );
  12. return 0;
  13. }