Daniel Dunbar | ca74ae7 | 2009-11-17 09:04:12 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -fobjc-nonfragile-abi -verify %s |
Fariborz Jahanian | af3e722 | 2009-03-31 00:06:29 +0000 | [diff] [blame] | 2 | @interface I |
3 | { | ||||
4 | } | ||||
5 | @property int IP; | ||||
6 | @end | ||||
7 | |||||
8 | @implementation I | ||||
9 | @synthesize IP; | ||||
10 | - (int) Meth { | ||||
11 | return IP; | ||||
12 | } | ||||
13 | @end |