Generic method inter-type declarations do not allow type bounds

Issue #187 resolved
Jesper Öqvist created an issue

Generic method inter-type declarations should allow type bounds. For example:

public <T extends Answer> boolean Answer.isSame(T node) {
    return answerToString().equals(node.answerToString());
}

Comments (1)

  1. Log in to comment