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

8 lines
108 B
Kotlin
Vendored

package foo
class A {
var x: Int
@JsName("xx") get() = 0
@JsName("xx") set(value) {}
}