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

9 lines
134 B
Kotlin
Vendored

package foo
open class Super {
<!JS_NAME_CLASH!>val foo<!> = 23
}
class Sub : Super() {
<!JS_NAME_CLASH!>fun foo()<!> = 42
}