3d28c4cdb2
#KT-2835 In Progress #KT-2225 In Progress #KT-338 In Progress
12 lines
103 B
Kotlin
12 lines
103 B
Kotlin
trait D {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun test(d: Any?) {
|
|
if (d !is D) return
|
|
|
|
class Local : D by d {
|
|
}
|
|
}
|
|
|