Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0089-sr4458.swift
Ben Cohen 83823f5f7f [stdlib] Obsolete various compatibility shims in 5.0 (#19008)
* 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
2018-08-28 13:20:25 -07:00

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))