Files
kotlin-fork/idea/testData/inspectionsLocal/covariantEquals/inObject.kt
T
Toshiaki Kameyama 61f3e776a7 Add 'Covariant equals' inspection
#KT-29798 Fixed
2019-04-02 13:19:05 +07:00

7 lines
151 B
Kotlin
Vendored

// PROBLEM: 'equals' should take 'Any?' as its argument
// FIX: none
object F {
fun <caret>equals(other: F?): Boolean {
return true
}
}