1 // Test whether __func__ works for ordinary member functions.
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Matt Austern <austern@apple.com>, 3 Aug 2003
9 const char* zqjx(int, char);
12 const char* y8a::zqjx(int, char)
21 const char* s = tmp.zqjx(16, 'x');
24 ok = ok && s[0] == 'z';
25 ok = ok && s[1] == 'q';
26 ok = ok && s[2] == 'j';
27 ok = ok && s[3] == 'x';
28 ok = ok && s[4] == '\0';