4d9b19da82
#KT-18539 Fixed
15 lines
420 B
Plaintext
Vendored
15 lines
420 B
Plaintext
Vendored
import kotlin.reflect.KProperty
|
|
|
|
// "Create extension function 'String.getValue', function 'String.setValue'" "true"
|
|
fun x(parameters: String) {
|
|
var n by parameters
|
|
}
|
|
|
|
private operator fun String.setValue(nothing: Nothing?, property: KProperty<*>, any: Any) {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
private operator fun String.getValue(nothing: Nothing?, property: KProperty<*>): Any {
|
|
TODO("Not yet implemented")
|
|
}
|