mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 18:09:48 +00:00
13 lines
187 B
C++
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;
|
|
}
|