Silence some warnings in the test.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32341 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
theraven 2011-02-23 23:49:08 +00:00
parent fb1c8c23b7
commit b905a54e80

View file

@ -60,10 +60,10 @@ int main(void)
id a, b, c, d;
}
#endif
@property (nonatomic,readwrite,retain) NSObject *a;
@property (readwrite,retain) NSObject *b;
@property (nonatomic,readwrite,copy) NSObject *c;
@property (readwrite,copy) NSObject *d;
@property (nonatomic,readwrite,retain) id a;
@property (readwrite,retain) id b;
@property (nonatomic,readwrite,copy) id c;
@property (readwrite,copy) id d;
@end
@implementation B
@synthesize a,b,c,d;