e3ce799993
#KT-33972 Fixed
8 lines
130 B
Kotlin
Vendored
8 lines
130 B
Kotlin
Vendored
//
|
|
actual open class A {
|
|
actual open fun c(a: Int, b: String) {}
|
|
}
|
|
|
|
class B : A() {
|
|
override fun c(a: Int, b: String) {}
|
|
} |