Files
swift-mirror/test/SILGen/closure_literal_reabstraction_tuple_ownership.swift
2021-09-30 16:42:08 -07:00

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 }
}
}