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

7 lines
101 B
Kotlin
Vendored

package foo
class A {
<!JS_NAME_CLASH!>fun bar() = 23<!>
<!JS_NAME_CLASH!>val bar = 23<!>
}