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

8 lines
111 B
Kotlin
Vendored

package foo
class A
<!JS_NAME_CLASH!>fun A.get_bar()<!> = 23
val A.bar: Int
<!JS_NAME_CLASH!>get()<!> = 42