mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Allowed SILFunctionType instances for pseudogeneric coroutines without signatures to be created. Such instances are created by SILTypeSubstituter::substSILFunctionType when SILGen'ing a conformance of a pseudogeneric type to a protocol featuring a coroutine requirement. rdar://81421394
11 lines
244 B
Objective-C
11 lines
244 B
Objective-C
#include <Foundation/Foundation.h>
|
|
|
|
#pragma clang assume_nonnull begin
|
|
|
|
@interface Ranger<__covariant SectionType, __covariant ItemType> : NSObject {
|
|
NSRange _range;
|
|
}
|
|
@property(nonatomic) NSRange range;
|
|
@end
|
|
#pragma clang assume_nonnull end
|