mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
254 B
Swift
12 lines
254 B
Swift
// RUN: %target-swift-frontend -primary-file %s -emit-ir
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
extension _MutableIndexable {
|
|
typealias SubSequence = MutableRangeReplaceableRandomAccessSlice<Data>
|
|
}
|
|
|
|
print(type(of: Data.self.SubSequence.self))
|