4d9b19da82
#KT-18539 Fixed
11 lines
189 B
Plaintext
Vendored
11 lines
189 B
Plaintext
Vendored
// "Create extension function 'Any.get'" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun x (y: Any) {
|
|
val z: Any = y[""]
|
|
}
|
|
|
|
private operator fun Any.get(s: String): Any {
|
|
TODO("Not yet implemented")
|
|
}
|