ext-cryptopp/TestPrograms/test_cxx17.cpp

10 lines
129 B
C++
Raw Permalink Normal View History

2019-10-27 04:29:18 +00:00
int main(int argc, char* argv[])
{
2020-08-06 05:44:04 +00:00
#if __cplusplus >= 201703L
int x[1];
#else
int x[-1];
#endif
return 0;
2020-08-06 02:10:31 +00:00
}