Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/name/overrideOverloadedNativeFunction.fir.kt
T
2023-01-09 08:57:08 +00:00

10 lines
155 B
Kotlin
Vendored

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 { }
}