9 lines
89 B
C++
9 lines
89 B
C++
int main(void)
|
|
{
|
|
if (!__func__)
|
|
return 1;
|
|
if (!(*__func__))
|
|
return 1;
|
|
return 0;
|
|
}
|