blob: 94fb9fe2c0ec43b972bd48eb31dfcb18873b472b [file]
// FIR_IDENTICAL
external open class A {
open fun f(x: Int): Unit
<!JS_NAME_CLASH!>open fun f(x: String): Unit<!>
}
class InheritClass : A() {
<!JS_NAME_CLASH!>override fun f(x: Int): Unit<!> { }
}