Files
m2dev-client-src/vendor/cryptopp/TestPrograms/test_cxx17_exceptions.cpp
2025-08-19 00:20:40 +02:00

12 lines
235 B
C++

// https://en.cppreference.com/w/cpp/feature_test
#include <exception>
int main(int argc, char* argv[])
{
#if __cpp_lib_uncaught_exceptions >= 201411L
int x = std::uncaught_exceptions();
#else
int x[-1];
#endif
return 0;
}