Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/name/jsNameProhibitedOnExtensionProperty.fir.kt
T
2023-01-09 08:57:08 +00:00

10 lines
116 B
Kotlin
Vendored

package foo
class A
@JsName("xx") val A.x: Int
get() = 23
@property:JsName("yy") val A.y: Int
get() = 42