blob: c28351e23d6030a34664e05947db264b61b2a465 [file]
external open class A {
open fun f(x: Int): Unit
open fun f(x: String): Unit
}
class InheritClass : A() {
override fun f(x: Int): Unit { }
}