xref: /minix3/external/bsd/llvm/dist/clang/test/PCH/objc_property.h (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
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