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
9#if defined(_MSC_VER)
10# pragma warning(disable: 4702) // unreachable code
11#endif
12
13#include <boost/core/quick_exit.hpp>
14
15int main()
16{
17 boost::quick_exit( code: 1 );
18 return 0;
19}
20

source code of boost/libs/core/test/quick_exit_fail.cpp