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

11 lines
265 B
Plaintext
Vendored

import kotlin.reflect.KProperty
// "Create extension function 'String.getValue'" "true"
fun x(parameters: String) {
val n by parameters
}
private operator fun String.getValue(nothing: Nothing?, property: KProperty<*>): Any {
TODO("Not yet implemented")
}