blob: 3545b32ef5a4c3cb80415adee4e543e61e8d0ce3 [file] [log] [blame]
#ifndef SWIFT_TEST_OBJC_CLASSES_H
#define SWIFT_TEST_OBJC_CLASSES_H
#import <Foundation/Foundation.h>
@interface FirstClass : NSObject
@property void *x;
@end
@interface SecondClass : NSObject
@property void *x;
@property void *y;
@end
@interface ThirdClass : NSObject
@property void *x;
@property void *y;
@property void *z;
@end
#endif