certificate/include/cryptopp/TestPrograms/test_cxx17.cpp

10 lines
120 B
C++
Raw Normal View History

2025-06-26 15:15:38 +00:00
int main(int argc, char* argv[])
{
#if __cplusplus >= 201703L
int x[1];
#else
int x[-1];
#endif
return 0;
}