Files
kotlin-fork/compiler/testData/diagnostics/tests/constructorConsistency/delegate.kt
T

15 lines
255 B
Kotlin
Vendored

// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_PARAMETER
import kotlin.reflect.KProperty
class Delegate(val x: Int) {
operator fun getValue(t: Any?, p: KProperty<*>): Int = x
}
class My {
val x: Int by Delegate(this.foo())
fun foo(): Int = x
}