aboutsummaryrefslogtreecommitdiffstats
path: root/cxx11/c++11-test-__func__-N2340.cpp
blob: c10dd185a8ba7042704df45220c86aa5a428f185 (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;
}