Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/equalsCallsLeftArgument.kt
T
2020-03-24 18:58:19 +03:00

15 lines
229 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
inline class A(val x: String)
class B {
override fun equals(other: Any?) = true
}
fun box(): String {
val x: Any? = B()
val y: A = A("")
if (x != y) return "Fail"
return "OK"
}