mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-10 06:30:05 +00:00
10 lines
142 B
C++
10 lines
142 B
C++
![]() |
int main(int argc, char* argv[])
|
||
|
{
|
||
|
#if __cpp_variadic_templates >= 200704L
|
||
|
int x[1];
|
||
|
#else
|
||
|
int x[-1];
|
||
|
#endif
|
||
|
return 0;
|
||
|
}
|