Files
swift-mirror/test/SILGen/Inputs/usr/include/objc_extensions_helper.h
Nate Chandler 2d03664e45 [TypeLowering] Return pseudogeneric @autoreleasing
Previously, when a pseudogeneric function returned a type parameter, it
was unowned.  That resulted in invalid OSSA out of SILGen.  Here, this
is fixed to use the @autoreleasing convention.

rdar://64375208
2024-05-31 18:42:25 -07:00

13 lines
212 B
Objective-C

@import Foundation;
@interface Base : NSObject
- (void)objCBaseMethod;
@property (nonatomic, strong) NSString *prop;
@end
@protocol Pettable
@end
@interface PettableContainer<T : id<Pettable>> : NSObject
@end