Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
name
/
overrideOverloadedNativeFunction.kt
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
<!>
{
}
}