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

13 lines
200 B
Kotlin
Vendored

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