The following code fails to compile for me. I'm compiling from IDEA or
using a groovyc Ant task, with JDK 1.6. Fails for both Groovy 1.5.7
and 1.6.3.
interface TypeDescriptor {
}
interface MapDescriptor extends Map<String, TypeDescriptor> {
}
The error message is that Map reference has 2 parameters but the
referred class takes no parameters.
Fixed