// RUN: %clang_cc1 -fsyntax-only -verify %s // expected-no-diagnostics // radar 7682116 @interface Super @end @interface NSArray : Super @end @interface NSSet : Super @end @protocol MyProtocol - (void)myMethod; @end @protocol MyProtocol2 - (void)myMethod2; @end @interface NSArray() @end @interface NSSet() @end int main (int argc, const char * argv[]) { NSArray *array = (void*)0; NSSet *set = (void*)0; id instance = (argc) ? array : set; instance = (void*)0; return 0; }