[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / clang / test / SemaObjC / property-expression-error.m
blobe306722e6c51f994c2183c7faa16f6abd6e03adf
1 // RUN: %clang_cc1  -fsyntax-only -verify -Wno-objc-root-class %s
3 @interface AddressMyProperties 
5   unsigned index;
7 @property unsigned index;
8 @end
10 @implementation AddressMyProperties
11 @synthesize index;
12 @end
14 int main() {
15         AddressMyProperties *object;
16         &object.index; // expected-error {{address of property expression requested}}
17         return 0;
20 typedef int Foo;
21 void test() {
22   Foo.x;        // expected-error {{expected identifier or '('}}