1 /* Test if ObjC classes (and pointers thereto) can participate
2 in C++ overloading. Correct handling of cv-qualifiers is
4 /* Author: Ziemowit Laski <zlaski@apple.com>. */
6 /* { dg-do compile } */
20 typedef const _Tp* const_pointer;
21 typedef _Tp& reference;
22 typedef const _Tp& const_reference;
24 pointer address(reference __x) const { return &__x; }
25 const_pointer address(const_reference __x) const { return &__x; }