1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
10 - (void)bar:(id *)objects;
11 - (void)foo:(G**)objects;
31 operator id() const { return (id)_value; }
32 operator Class() const { return (Class)_value; }
33 operator I1*() const { return (I1*)_value; }
35 bool Compare(id obj) { return *this == obj; }
36 bool CompareClass(Class obj) { return *this == obj; }
37 bool CompareI1(I1* obj) { return *this == obj; }
40 Wrapper &operator[](int);
41 Wrapper& operator->*(int);