Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/SpecififcityByReceiver.kt
T

10 lines
227 B
Kotlin
Vendored

fun Any.<!EXTENSION_SHADOWED_BY_MEMBER!>equals<!>(<!UNUSED_PARAMETER!>other<!> : Any?) : Boolean = true
fun main() {
val command : Any = 1
command<!UNNECESSARY_SAFE_CALL!>?.<!>equals(null)
command.equals(null)
}