Files
kotlin/compiler/testData/codegen/bytecodeText/inlineClasses/resultApiDoesntCallSpecializedEquals.kt
2020-05-28 18:00:35 +03:00

13 lines
290 B
Kotlin
Vendored

// !API_VERSION: 1.3
// WITH_RUNTIME
// FILE: test.kt
fun test() {
val result = Result.success("yes!")
val other = Result.success("nope")
if (result == other) println("==")
if (result != other) println("!=")
}
// @TestKt.class:
// 0 INVOKESTATIC kotlin/Result.equals-impl0