Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
name
/
overrideOverloadedNativeFunction.kt
blob: 94fb9fe2c0ec43b972bd48eb31dfcb18873b472b [
file
]
// FIR_IDENTICAL
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
<!>
{
}
}