Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/get/createGetFromUsage2.kt.after
T
2019-11-13 08:37:25 +09:00

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")
}