mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
182 B
Swift
9 lines
182 B
Swift
// 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
|
|
}
|