blob: a36b0bcf2162b94980e33c929d49433042756c12 [file] [log] [blame]
// RUN: %target-swift-frontend -emit-sil -verify %s | %FileCheck %s
extension Collection {
func foo() {
// CHECK: function_ref @$sSlsE9dropFirsty11SubSequenceQzSiF
_ = zip(indices, indices.dropFirst(3))
}
}