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