blob: 4573101504511543a793725bf17bbd6b215f8e34 [file]
// IGNORE_BACKEND_FIR: JVM_IR
class KeySpan(val left: String) {
public fun matches(value : String) : Boolean {
return left > value && left > value
}
}
fun box() : String {
KeySpan("1").matches("3")
return "OK"
}