blob: cfda2ca17d5fc14e889532d879ad3bcced53f800 [file]
// RUN_PIPELINE_TILL: FRONTEND
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<!> { }
}