brintos

brintos / llvm-project-archived public Read only

0
0
Text · 293 B · fac5827 Raw
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