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

8 lines
161 B
Kotlin

val a: Int by Delegate()
class Delegate {
fun get(t: Any?, p: PropertyMetadata): Int {
t.equals(p) // to avoid UNUSED_PARAMETER warning
return 1
}
}