fbe558a0de
^KTIJ-25112 Fixed
11 lines
141 B
Kotlin
Vendored
11 lines
141 B
Kotlin
Vendored
open class A
|
|
class B : A()
|
|
|
|
private fun processB(b: B): Int = 2
|
|
|
|
fun test(a: A) {
|
|
if (a is B) {
|
|
<expr>processB(a)</expr>
|
|
}
|
|
}
|