// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o - @protocol MyProto1 @end @protocol MyProto2 @end @interface INTF @end INTF *g1; INTF *g2, *g3; INTF * Func(INTF *p2, INTF *p3, INTF *p4, INTF *p5) { return p2; } INTF * Func1(INTF *p2, INTF *p3, INTF *p4, INTF *p5) { return p3; } @interface Foo @property int (*hashFunction)(const void *item, int (*size)(const void *item)); @end