blob: 1ff690b029c638a17597e6c8d48d3421a4a8de01 [file] [log] [blame]
// RUN: %target-typecheck-verify-swift -solver-expression-time-threshold=1
// REQUIRES: tools-release,no_asan
// expected-error@+1 {{the compiler is unable to type-check this expression in reasonable time}}
let _: (Character) -> Bool = { c in
("a" <= c && c <= "z") || ("A" <= c && c <= "Z") || c == "_"
}