support for arrays in template j.u.Objects.equals/hashCode (IDEA-162302)

This commit is contained in:
Anna Kozlova
2017-06-08 17:49:06 +03:00
parent 52e5edb007
commit e78186d6ae
6 changed files with 155 additions and 11 deletions
@@ -0,0 +1,13 @@
class I {
public int hashCode() {
return 0;
}
public boolean equals(Object o) {
return o == this;
}
}
class A extends I {
int[] a1;
<caret>
}