Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/get/createGetFromUsage2.kt.after
T
2016-07-20 15:39:13 +03:00

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.
}