Files
kotlin/compiler/testData/diagnostics/testsWithJsStdLib/name/propertyAndMethodInImplementor.kt

9 lines
123 B
Kotlin
Vendored

package foo
interface I {
<!JS_NAME_CLASH!>fun foo()<!> = 23
}
class Sub : I {
<!JS_NAME_CLASH!>var foo<!> = 42
}