Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt3421.kt
T

10 lines
169 B
Kotlin
Vendored

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