Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
When I have a groovy file:
interface A { interface B { } interface C { } }
When I use classLoader to parse this file, I only get the interface B
def gcl = new GroovyClassLoader() // this just get the interface B, Something Do I missed? def loadedClass = gcl.parseClass(new File("xxxx"))
my version:
- jdk:18.0.1
- groovy: 4.0.2