Add intentions to convert nullable <--> lateinit var #KT-12743 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
9049af3bdf
commit
4cf266e99f
@@ -0,0 +1,11 @@
|
||||
// IS_APPLICABLE: false
|
||||
import kotlin.reflect.KProperty
|
||||
|
||||
class C {
|
||||
<caret>var foo by Delegate
|
||||
}
|
||||
|
||||
object Delegate {
|
||||
operator fun getValue(instance: Any?, property: KProperty<*>): String = ""
|
||||
operator fun setValue(instance: Any?, property: KProperty<*>, value: String) {}
|
||||
}
|
||||
Reference in New Issue
Block a user