Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.5
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
in
class Dummy {
def call(Object arguments) {
"1"
}
}
def c = new Dummy()
assert c(2) == "1"
the assert is never visited because Groovy tries to call doCall instead of call. responsible for this is SBA#invokeClosure
fixed