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