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

10 lines
160 B
Kotlin

// !DIAGNOSTICS: -UNUSED_PARAMETER
val a: Int by Delegate()
get
class Delegate {
fun get(t: Any?, p: PropertyMetadata): Int {
return 1
}
}