xref: /aosp_15_r20/external/clang/test/PCH/objc_property.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li /* For use with the objc_property.m PCH test */
2*67e74705SXin Li @interface TestProperties
3*67e74705SXin Li {
4*67e74705SXin Li   int value;
5*67e74705SXin Li   float percentage;
6*67e74705SXin Li }
7*67e74705SXin Li 
8*67e74705SXin Li + alloc;
9*67e74705SXin Li 
10*67e74705SXin Li @property int value;
11*67e74705SXin Li @property float percentage;
12*67e74705SXin Li @end
13