The following code gives an unclear error message.
Error message given is
(currentLtLevel != 0) || ltCounter == currentLtLevel @ line -1, column -1. Sandbox/src/test GenericsError.groovy line 1 1211441271049 2180
The error in the code is that it's missing the closing bracket ">"
package test
class GenericsError {
static void main(args) {
def someList = new ArrayList<Integer()
}
}