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; }