2011-04-19 05:16:59 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2012-10-19 20:44:48 +08:00
|
|
|
// expected-no-diagnostics
|
2011-04-19 05:16:59 +08:00
|
|
|
// 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
|
|
|
|
|