Files
kotlin-fork/compiler/testData/codegen/box/ranges/contains/jvmStaticContainsInObject.kt
T

11 lines
175 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// WITH_RUNTIME
object O {
@JvmStatic
operator fun contains(x: String): Boolean = x == "O"
}
fun box() =
if ("O" in O) "OK" else "Failed"