Details
Description
If I try to compile the following class the process fails with the attached stacktrace:
@groovy.transform.CompileStatic class A { def method() { Object.methods.collect { java.lang.reflect.Method m -> m.name } Object.methods*.name } }
Without the spread-operator line it will be compiled without an exception.