blob: 0b6e32e3e85e76d3191b2d550eb0b9be7ae08492 [file] [log] [blame]
// RUN: %target-typecheck-verify-swift %s
func foo(optional: Int?) {
_ = { [value = optional ?? 0]
in
_ = value
}
_ = [1].map { [number = optional ?? 1] value -> String in
return number.description
}
}