Files
kotlin-fork/compiler/testData/diagnostics/tests/delegatedProperty/defaultGetter.kt
T

14 lines
221 B
Kotlin
Vendored

// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_PARAMETER
import kotlin.reflect.KProperty
val a: Int by Delegate()
get
class Delegate {
operator fun getValue(t: Any?, p: KProperty<*>): Int {
return 1
}
}