1
0
mirror of https://github.com/nillerusr/source-engine.git synced 2025-01-30 16:54:27 +00:00
2020-10-22 20:43:01 +03:00

10 lines
129 B
C++

int main(int argc, char* argv[])
{
#if __cplusplus >= 201402L
int x[1];
#else
int x[-1];
#endif
return 0;
}