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 |
13 |
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 |
13 |