Files
DarkRP2D/external/entityx-1.1.2/cxx11/c++11-test-__func__-N2340.cpp
2018-05-10 23:36:35 +02:00

9 lines
122 B
C++

#include <cstring>
int main()
{
if (!__func__) { return 1; }
if(std::strlen(__func__) <= 0) { return 1; }
return 0;
}