Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/get/afterCreateGetFromUsage2.kt

9 lines
244 B
Kotlin

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