Files
kotlin-fork/compiler/testData/diagnostics/tests/delegatedProperty/propertyDelegatedMissing.kt
T
2014-09-24 15:34:12 +04:00

9 lines
174 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
}
}