Consider the following:
class Pogo {
private String field
boolean equals(Object that) {
that instanceof Pogo && that.field.equals(this.field)
}
}
"field" is showing as unknown (underlined) after variable expression that has been tested by instanceof.

Consider the following:
"field" is showing as unknown (underlined) after variable expression that has been tested by instanceof.