Files
kotlin-fork/idea/idea-completion/testData/smart/propertyDelegate/GenericVar.kt
T
2016-04-05 19:33:02 +03:00

10 lines
273 B
Kotlin
Vendored

import kotlin.reflect.KProperty
class X {
operator fun getValue(thisRef: List<String>, property: KProperty<*>): String = ""
operator fun setValue(thisRef: List<String>, property: KProperty<*>, value: String){}
}
var <T> List<T>.property: T by <caret>
// EXIST: X