blob: bf78e6a8cb6f1e7561c4ada92654186ba87e5c9d [file] [log] [blame]
// RUN: %target-typecheck-verify-swift -solver-expression-time-threshold=1
// REQUIRES: tools-release,no_asan
// REQUIRES: rdar38378503,no_asan
// expected-no-diagnostics
let a: [Double] = []
_ = a.map { $0 - 1.0 }
.map { $0 * $0 }
.reduce(0, +) / Double(a.count)