blob: 2c839bfd4923a841e5b473f5f2cc69b28f94c8f5 [file] [log] [blame]
@import Foundation;
typedef NSString *_Nonnull SNTClosedEnum __attribute((swift_newtype(enum)))
__attribute((swift_name("ClosedEnum")));
extern const SNTClosedEnum SNTFirstClosedEntryEnum;
extern const SNTClosedEnum SNTSecondEntry;
extern const SNTClosedEnum SNTClosedEnumThirdEntry;
@interface GenericClassA<T> : NSObject
@end
@interface UsesGenericClassA : NSObject
-(void)takeEnumValues:(nonnull GenericClassA<SNTClosedEnum> *)values;
-(void)takeEnumValuesArray:(nonnull NSArray<SNTClosedEnum> *)values;
@end