]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/ASTMerge/Inputs/property1.m
Update clang to 97654.
[FreeBSD/FreeBSD.git] / test / ASTMerge / Inputs / property1.m
1 // Matching properties
2 @interface I1 {
3 }
4 - (int)getProp2;
5 - (void)setProp2:(int)value;
6 @end
7
8 // Mismatched property
9 @interface I2
10 @property (readonly) float Prop1;
11 @end
12