Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/name/jsNameAndOverridden.kt
T

9 lines
151 B
Kotlin
Vendored

package foo
open class Super {
<!JS_NAME_CLASH!>fun foo()<!> = 23
}
class Sub : Super() {
<!JS_NAME_CLASH!>@JsName("foo") fun bar()<!> = 42
}