Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
2.1.5
-
None
Description
The following code does not compile because the type checker confuses curry with call:
@TypeChecked
void test() {
def cl = { it }.curry(42)
def val = cl.call()
assert val == 42
}