Consider the following:
class C implements Comparator<String> {
@Override
int compare(String one, String two) {
}
@Override
Comparator<String> reversed() {
return super.reversed() // works in Groovy 4 (GROOVY-9884, GROOVY-9909, ...)
}
}
Delegating to super default methods is supported as of Groovy 4.

Consider the following:
Delegating to super default methods is supported as of Groovy 4.