+1
All tests pass, and I built groovy from source code and tested groovy
console via the following code, which runs well.
```
class A {
enum E { E1, E2 }
}
class B extends A {
E e1() { E.E1 }
E e2() { E.E2 }
}
def b = new B()
assert A.E.E1 == b.e1()
assert A.E.E2 == b.e2()
```
Here is my machine info:
------------------------------------------------------------
Gradle 4.7
------------------------------------------------------------
Build time: 2018-04-18 09:09:12 UTC
Revision: b9a962bf70638332300e7f810689cb2febbd4a6c
Groovy: 2.4.12
Ant: Apache Ant(TM) version 1.9.9 compiled on February 2 2017
JVM: 1.8.0_152 (Oracle Corporation 25.152-b16)
OS: Windows 10 10.0 amd64
Cheers,
Daniel.Sun
--
Sent from: http://groovy.329449.n5.nabble.com/Groovy-Dev-f372993.html