Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0180-issue-51525.swift

9 lines
191 B
Swift

// RUN: not %target-swift-frontend -typecheck %s
// https://github.com/apple/swift/issues/51525
class Graph<V>: Collection {
typealias Iterator = AnyIterator<V>
typealias Index = Int
}