Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0104-issue-46967.swift

14 lines
321 B
Swift

// RUN: %target-swift-frontend %s -emit-ir
// https://github.com/apple/swift/issues/46967
class IndexPath {
init(indexes: [Int]) {}
}
extension CountableRange where Bound == Int {
func indexPaths(inSection section: Bound) -> [IndexPath] {
return reduce([]) { $0 + [IndexPath(indexes: [section, $1])] }
}
}