blob: 32204453fbd8c529bcc4f89461ff9f82e72603ef [file] [log] [blame]
// RUN: %target-swift-frontend %s -emit-silgen | %target-sil-opt
import Swift
protocol P {
func join<
S : Sequence
>(elements: S) -> Self where S.Iterator.Element == Self
}