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

10 lines
141 B
Kotlin
Vendored

fun Any.equals(other : Any?) : Boolean = true
fun main() {
val command : Any = 1
command?.equals(null)
command.equals(null)
}