blob: 1952a99cefd640590c72e7c2cbc8bba07d8fa3a3 [file] [log] [blame]
// RUN: %target-swift-frontend %s -typecheck
extension Collection {
func f() -> [Generator.Element] {
return Array(self.prefix(0))
}
}