libcryfs/vendor/cryptopp/vendor_cryptopp/TestPrograms/test_cxx98_exception.cpp

13 lines
187 B
C++

#include <exception>
struct S {
S() {}
virtual ~S() {
bool b = std::uncaught_exception();
}
};
int main(int argc, char* argv[])
{
S s;
return 0;
}