Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/local/LocalClassDelegation.kt
T
2013-12-11 19:53:50 +04:00

12 lines
129 B
Kotlin

trait D {
fun foo() {}
}
fun test(d: Any?) {
if (d !is D) return
class Local : D by <!DEBUG_INFO_AUTOCAST!>d<!> {
}
}