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