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

11 lines
178 B
C++

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