blob: 950b933c9d5e5dc6c9b484d147fa145fc4754d3f [file] [log] [blame]
/* APPLE LOCAL file radar 4805321 */
/* Program to test new dot-syntax to call setter/getter. */
/* { dg-options "-mmacosx-version-min=10.5 -fobjc-new-property -lobjc" } */
/* { dg-do run { target *-*-darwin* } } */
#include <objc/objc.h>
/* APPLE LOCAL radar 4894756 */
#include "../objc/execute/Object2.h"
@interface Bar : Object
{
int iVar;
}
- (int) FooBar;
- (void) setFooBar : (int) value;
@end
@implementation Bar
- (void) setFooBar : (int) value { iVar = value; }
- (int) FooBar {return iVar; }
@end
int main(int argc, char *argv[]) {
Bar *f = [Bar new];
f.FooBar = 1;
f.FooBar += 3;
f.FooBar -= 4;
return f.FooBar;
}