Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.4.5
-
None
Description
import groovy.transform.*;
// @CompileStatic
class Bug {
void exec()
}
new Bug().exec()
The above code prints "true". But when @CompileStatic is umcommented, it prints "false".