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

19 lines
186 B
Kotlin
Vendored

interface I {
fun foo()
}
interface J {
@JsName("bar")
fun foo()
}
interface K : I, J {
override fun foo()
}
interface L : K {
override fun foo()
fun bar()
}