aboutsummaryrefslogtreecommitdiffstats
path: root/lib/entityx/cxx11/c++11-test-__func__-N2340.cpp
blob: d961df89f9a77e9acec7456ebb1b8f4087b33736 (plain)
1
2
3
4
5
6
7
8
#include <cstring>

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