Files
swift-mirror/validation-test/SILGen/Inputs/rdar81421394.h
Nate Chandler b9ccde3771 SILFunctionType: Loosened assert.
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
2023-04-19 17:53:15 -07:00

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