Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Fariborz Jahanian | 0337f21 | 2009-07-07 18:50:52 +0000 | [diff] [blame] | 2 | |
| 3 | @interface AddressMyProperties |
| 4 | { |
| 5 | unsigned index; |
| 6 | } |
| 7 | @property unsigned index; |
| 8 | @end |
| 9 | |
| 10 | @implementation AddressMyProperties |
| 11 | @synthesize index; |
| 12 | @end |
| 13 | |
| 14 | int main() { |
| 15 | AddressMyProperties *object; |
| 16 | &object.index; // expected-error {{address of property expression requested}} |
| 17 | return 0; |
| 18 | } |
Fariborz Jahanian | 8149a57 | 2010-03-22 21:02:34 +0000 | [diff] [blame] | 19 | |
| 20 | typedef int Foo; |
| 21 | void test() { |
| 22 | Foo.x; // expected-error {{expected identifier or '('}} |
| 23 | } |