mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
269 B
Swift
11 lines
269 B
Swift
// RUN: %target-swift-frontend -emit-ir %s
|
|
|
|
// https://github.com/apple/swift/issues/53182
|
|
|
|
protocol DateGroupedCollection: Collection {
|
|
typealias DictionaryType = [String: Int]
|
|
|
|
typealias Index = DictionaryType.Index
|
|
typealias Element = DictionaryType.Element
|
|
}
|