blob: d74ae8f154fde79365758830cf8a4b8e8dd3a2d0 [file] [log] [blame]
Fariborz Jahanianf54e3ae2010-10-08 22:59:25 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Fariborz Jahanianf54e3ae2010-10-08 22:59:25 +00003// rdar://8530080
4
5@protocol ViewDelegate @end
6
7@interface NSTextView
8- (id <ViewDelegate>)delegate;
9@end
10
11@interface FooTextView : NSTextView
12@end
13
14@interface FooTextView()
15- (id)delegate;
16@end
17
18@implementation FooTextView
19- (id)delegate {return 0; }
20@end
21