blob: 5a724199b4d3aac7d1d19098b564729dad251654 [file] [log] [blame]
// 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) {}
}