mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
* Obsolete ModifierSlice typealiases in 5.0 * Obsolete *Indexable in 5.0 * Obsolete IteratorOverOne/EmptyIterator in 5.0 * Obsolete lazy typealiases in 5.0 * Drop .characters from tests * Obsolete old literal protocols in 5.0 * Obsolete Range conversion helpers in 5.0 * Obsolete IndexDistance helpers in 5.0 * Obsolete Unsafe compat helpers in 5.0 * Obsolete flatMap compatibility helper in 5.0 * Obsolete withMutableCharacters in 5.0 * Obsolete customPlaygroundQuickLook in 5.0 * Deprecate Zip2Sequence streams in 5.0 * Replace * with swift on lotsa stuff * Back off obsoleting playground conformances for now
12 lines
219 B
Swift
12 lines
219 B
Swift
// RUN: %target-swift-frontend -primary-file %s -emit-ir
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
extension MutableCollection {
|
|
typealias SubSequence = Slice<Data>
|
|
}
|
|
|
|
print(type(of: Data.self.SubSequence.self))
|