Files
kotlin-fork/compiler/testData/diagnostics/tests/delegatedProperty/provideDelegate/localDelegatedProperty.kt
T
2016-12-12 23:14:07 +03:00

11 lines
264 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
import kotlin.reflect.KProperty
operator fun String.provideDelegate(a: Any?, p: KProperty<*>) = this
operator fun String.getValue(a: Any?, p: KProperty<*>) = this
fun test(): String {
val result by "OK"
return result
}