Douglas Gregor | 70e5a14 | 2009-04-22 23:20:34 +0000 | [diff] [blame] | 1 | /* For use with the objc_property.m PCH test */ |
2 | @interface TestProperties | ||||
3 | { | ||||
4 | int value; | ||||
5 | float percentage; | ||||
6 | } | ||||
7 | |||||
8 | + alloc; | ||||
9 | |||||
10 | @property int value; | ||||
11 | @property float percentage; | ||||
12 | @end |