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

10 lines
245 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
val test1: String by "OK"
val test2 by "OK"