mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
205 B
Swift
12 lines
205 B
Swift
// RUN: %target-swift-emit-silgen -verify %s
|
|
|
|
// rdar://83186202
|
|
|
|
struct Butt {
|
|
var foo: [Int: (Int, String, (Error?) -> Void)]
|
|
|
|
func bar() {
|
|
_ = foo.lazy.compactMap { $0.value.0 }
|
|
}
|
|
}
|