mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
12 lines
134 B
Kotlin
Vendored
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<!> {
|
|
}
|
|
}
|
|
|