Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Problem
-
1.7-beta-1
-
None
-
None
-
MAc os X, eclipse 3.5 + plugin Groovy eclipse v2 (contains groovy 1.7 beta1 snapshot : 1.7.0.20090731)
Description
Running old code does not work anymore with groovy 1.7 beta 1 snapshot.
Outer.java :
public interface Outer { interface Inner { static String VAR = "value"; } }
script.groovy:
assert "value" == Outer.Inner.VAR
running script.groovy results in :
groovy.lang.MissingPropertyException: No such property: Inner for class: Outer