llvm-project/clang/test/SemaObjC/conditional-expr-7.m
Aaron Ballman d618f1c3b1 Remove rdar links; NFC
This removes links to rdar, which is an internal bug tracker that the
community doesn't have visibility into.

See further discussion at:
https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
2023-07-07 08:41:11 -04:00

31 lines
538 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
@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;
}