llvm-project/clang/test/SemaObjC/conditional-expr-7.m
Fariborz Jahanian 8e3b9db27f Forgot to include nested protocols in collection, resulting in
bogus warning. Fixes radar 7682116.

llvm-svn: 97157
2010-02-25 18:24:33 +00:00

31 lines
528 B
Objective-C

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