f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
12 lines
176 B
Objective-C
12 lines
176 B
Objective-C
/* For use with the objc_property.m PCH test */
|
|
@interface TestProperties
|
|
{
|
|
int value;
|
|
float percentage;
|
|
}
|
|
|
|
+ alloc;
|
|
|
|
@property int value;
|
|
@property float percentage;
|
|
@end
|