22 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s2// expected-no-diagnostics3 4@interface NSObject @end5 6@protocol TextInput7-editRange;8@end9 10@interface I {11 NSObject<TextInput>* editor;12}13- (id) Meth;14@end15 16@implementation I17- (id) Meth {18 return editor.editRange;19}20@end21 22