Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/name/jsNameAndOverridden.kt
T
2016-10-08 19:25:28 +03:00

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<!>
}