17 lines
338 B
Kotlin
17 lines
338 B
Kotlin
class Del {
|
|
fun get(<!UNUSED_PARAMETER!>_this<!>: Any?, <!UNUSED_PARAMETER!>p<!>: PropertyMetadata): Int = 0
|
|
}
|
|
|
|
fun df(del: Del): Del = del
|
|
|
|
|
|
fun test(del: Any?) {
|
|
if (del !is Del) return
|
|
|
|
class Local {
|
|
val delegatedVal by df(<!DEBUG_INFO_AUTOCAST!>del<!>)
|
|
val delegatedVal1: Int by df(<!DEBUG_INFO_AUTOCAST!>del<!>)
|
|
}
|
|
}
|
|
|