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