blob: 43e568d7c78525ac8283cde86289880a38290fba [file] [log] [blame]
// RUN: %target-swift-emit-silgen -verify %s
protocol P {}
func for_loop_tuple_destructure_reabstraction(_ x: [(P, P.Protocol)]) {
for (a, b) in x { _ = (a, b) }
}