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

10 lines
198 B
Kotlin
Vendored

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