Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt3421.kt
T
2019-11-19 11:00:09 +03:00

11 lines
199 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
public object Globals{
operator fun get(key: String, remove: Boolean = true): String {
return "OK"
}
}
fun box(): String {
return Globals["test"]
}