Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fe0f055c5c4e6ededc6378ef6df3f28ee841978
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
name
/
overrideOverloadedNativeFunction.kt
blob: a7c8c1944984ae4f595f021ffbc4da009476da89 [
file
]
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
<!>
{
}
}