]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/core/test/lightweight_test_fail13.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / core / test / lightweight_test_fail13.cpp
CommitLineData
20effc67
TL
1/*
2Copyright 2020 Glen Joseph Fernandes
3(glenjofe@gmail.com)
4
5Distributed under the Boost Software License, Version 1.0.
6(http://www.boost.org/LICENSE_1_0.txt)
7*/
8#include <boost/core/lightweight_test.hpp>
9
10void f()
11{
12 throw 5;
13}
14
15int main()
16{
17 BOOST_TEST_NO_THROW(f());
18 return boost::report_errors();
19}