blob: 62b45c0102c5c76284e317aa8810bb93ae4047ce [file] [log] [blame]
// RUN: %target-typecheck-verify-swift -solver-expression-time-threshold=1
// REQUIRES: tools-release,no_asan
// Mixed Int/Double slow to emit diagnostics
func rdar33476240(col: Int, row: Int, maxCol: Int, maxRow: Int) {
let _ = (-(maxCol - 1) + (col * 2)) * 0.1 * 0.2 * 0.3
// expected-error@-1 {{reasonable time}}
}