Fix false positive for "redundant super" in data class #KT-20981 Fixed

This commit is contained in:
Toshiaki Kameyama
2017-10-30 06:49:08 +03:00
committed by Mikhail Glukhikh
parent 63ad89eeb0
commit 0fd4cdb086
3 changed files with 12 additions and 5 deletions
@@ -0,0 +1,4 @@
// PROBLEM: none
data class My(val x: Int, val y: String) {
override <caret>fun hashCode() = super.hashCode()
}