mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
231 B
Swift
9 lines
231 B
Swift
// RUN: %target-swift-frontend %s -emit-ir
|
|
|
|
// https://github.com/apple/swift/issues/46291
|
|
|
|
let occurrences: [String] = []
|
|
let results: [(String, Int)] = occurrences.flatMap({ (match: String) -> (String, Int) in
|
|
return ("", 0)
|
|
})
|