9 lines
207 B
Kotlin
Vendored
9 lines
207 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
val targetNameLists: Map<String, String> = mapOf("1" to "OK")
|
|
|
|
fun <T> id(t: T) = t
|
|
fun foo(argumentName: String?): String? = id(targetNameLists[argumentName])
|
|
|
|
fun box() = foo("1")
|