1a13c21377
(cherry picked from commit c0d5df1)
11 lines
253 B
Plaintext
Vendored
11 lines
253 B
Plaintext
Vendored
// "Create extension function 'Any.get'" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun x (y: Any) {
|
|
val z: Any = y[""]
|
|
}
|
|
|
|
operator fun Any.get(s: String): Any {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|