Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/get/createGetFromUsage2.kt.after

11 lines
280 B
Plaintext
Vendored

// "Create extension function 'get'" "true"
// WITH_RUNTIME
fun x (y: Any) {
val z: Any = y[""]
}
operator fun Any.get(s: String): Any {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}