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

10 lines
158 B
Kotlin
Vendored

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