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

8 lines
203 B
Kotlin

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