diff options
Diffstat (limited to 'src/boost/libs/throw_exception/test/lib1_throw.cpp')
-rw-r--r-- | src/boost/libs/throw_exception/test/lib1_throw.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/boost/libs/throw_exception/test/lib1_throw.cpp b/src/boost/libs/throw_exception/test/lib1_throw.cpp new file mode 100644 index 00000000..4dadd176 --- /dev/null +++ b/src/boost/libs/throw_exception/test/lib1_throw.cpp @@ -0,0 +1,13 @@ +// Copyright 2018 Peter Dimov +// +// Distributed under the Boost Software License, Version 1.0. +// +// See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt + +#include "lib1_throw.hpp" + +void lib1::f() +{ + throw lib1::exception(); +} |