Files
swift-mirror/test/SIL/Parser/self.swift
2015-12-09 17:16:56 -08:00

9 lines
182 B
Swift

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