Files
kotlin-fork/idea/testData/inspectionsLocal/redundantOverride/dataClass.kt
T

4 lines
115 B
Kotlin
Vendored

// PROBLEM: none
data class My(val x: Int, val y: String) {
override <caret>fun hashCode() = super.hashCode()
}