Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0041-walkToDeclPost-crash.swift

8 lines
152 B
Swift

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