freebsd-dev/test/SemaObjC/ContClassPropertyLookup.m

19 lines
264 B
Mathematica
Raw Normal View History

2009-12-15 18:49:47 +00:00
// RUN: clang -cc1 -fsyntax-only -verify %s
2009-06-02 17:58:47 +00:00
@interface MyObject {
int _foo;
}
@end
@interface MyObject(whatever)
@property (assign) int foo;
@end
@interface MyObject()
@property (assign) int foo;
@end
@implementation MyObject
@synthesize foo = _foo;
@end