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