Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
dd4ca2cb43e932606f2630bd1f6f81f9cfb14a2e
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
name
/
conflictingNamesFromSuperclass.fir.kt
blob: ff85da4a2e54436352307925b2fc638ec8bc58f6 [
file
]
interface
A
{
@JsName
(
"foo"
)
fun f
()
}
interface
B
{
@JsName
(
"foo"
)
fun g
()
}
class
C
:
A
,
B
{
override
fun f
()
{}
override
fun g
()
{}
}
abstract
class
D
:
A
,
B
open
class
E
{
open fun f
()
{}
open fun g
()
{}
}
class
F
:
E
(),
A
,
B