96de29dfcb
#KT-19730 Fixed
11 lines
337 B
Plaintext
Vendored
11 lines
337 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 implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|