9 lines
104 B
Kotlin
Vendored
9 lines
104 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
open class A {
|
|
fun foo() {}
|
|
}
|
|
class B : A()
|
|
|
|
fun test(b: B?) {
|
|
(b as A).foo()
|
|
} |