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

9 lines
196 B
Kotlin

var a: Int by <!DELEGATE_SPECIAL_FUNCTION_MISSING!>A()<!>
class A {
fun get(t: Any?, p: PropertyMetadata): Int {
t.equals(p) // to avoid UNUSED_PARAMETER warning
return 1
}
}