Files
kotlin-fork/idea/testData/quickfix/createFromUsage/get/afterCreateGetFromUsage2.kt
T

7 lines
253 B
Kotlin

// "Create function 'get' from usage" "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.
}