3d8d92c7d3
- test data files renamed from *.jet to *.kt
10 lines
211 B
Kotlin
Vendored
10 lines
211 B
Kotlin
Vendored
fun Any.equals(<!UNUSED_PARAMETER!>other<!> : Any?) : Boolean = true
|
|
|
|
fun main(args: Array<String>) {
|
|
|
|
val command : Any = 1
|
|
|
|
command<!UNNECESSARY_SAFE_CALL!>?.<!>equals(null)
|
|
command.equals(null)
|
|
}
|