[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / clang / test / SemaObjC / objc-qualified-property-lookup.m
blobb5cadbd6037f9c17d999c6d39b7cb2713afc2915
1 // RUN: %clang_cc1  -fsyntax-only -verify -Wno-objc-root-class %s
2 // expected-no-diagnostics
3 // rdar://9078584
5 @interface NSObject @end
7 @protocol TextInput
8 -editRange;
9 @end
11 @interface I {
12   NSObject<TextInput>* editor;
14 - (id) Meth;
15 @end
17 @implementation I
18 - (id) Meth {
19    return editor.editRange;
21 @end