Files
kotlin/compiler/testData/diagnostics/tests/dataFlow/local/LocalClassDelegation.kt
2015-05-12 19:43:17 +02:00

12 lines
134 B
Kotlin
Vendored

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