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