Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
2.0-beta-2
-
None
Description
Just got the 2.0 compiler into groovy-eclipse, so testing things out:
import groovy.transform.TypeChecked; @TypeChecked class TC { public static void main(String[] args) { foo(); } public void foo() {} }
No type checking error is reported here - I presume there should be one? (Since foo is not static)