llvm-project/clang/test/SemaObjC/conditional-expr-8.m
Fariborz Jahanian b107143fed Fix a bug in calculation of composite type
of conditional expressions of objc pointer types
where one type is the immediate base type of the
other. // rdar://9296866

llvm-svn: 129718
2011-04-18 21:16:59 +00:00

26 lines
375 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
// rdar://9296866
@interface NSResponder
@end
@interface NSView : NSResponder
@end
@interface WebView : NSView
@end
@protocol WebDocumentView
@end
@implementation NSView
- (void) FUNC : (id)s {
WebView *m_webView;
NSView <WebDocumentView> *documentView;
NSView *coordinateView = s ? documentView : m_webView;
}
@end