Files
kotlin-fork/idea/testData/inspections/unusedImport/noUnusedProvideDelegate.Dependency.kt
T
Dmitry Gridin eee8d0263d Fix "Unused import" for 'provideDelegate'
#KT-31319 Fixed
2019-05-14 21:01:21 +07:00

7 lines
198 B
Kotlin
Vendored

package onetwo
import kotlin.properties.ReadOnlyProperty
import kotlin.reflect.KProperty
class C
operator fun C.provideDelegate(thisRef: Any, prop: KProperty<*>): ReadOnlyProperty<Any, C> = TODO()