27 lines
464 B
C++
27 lines
464 B
C++
/*
|
|
Copyright 2020 Glen Joseph Fernandes
|
|
(glenjofe@gmail.com)
|
|
|
|
Distributed under the Boost Software License, Version 1.0.
|
|
(http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
#include <boost/core/lightweight_test.hpp>
|
|
|
|
struct error
|
|
: std::exception {
|
|
const char* what() const BOOST_NOEXCEPT_OR_NOTHROW BOOST_OVERRIDE {
|
|
return "message";
|
|
}
|
|
};
|
|
|
|
void f()
|
|
{
|
|
throw error();
|
|
}
|
|
|
|
int main()
|
|
{
|
|
BOOST_TEST_NO_THROW(f());
|
|
return boost::report_errors();
|
|
}
|