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

7 lines
101 B
Kotlin
Vendored

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