Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/name/jsNameOnAccessors.kt
T
2018-05-04 18:04:57 +03:00

7 lines
170 B
Kotlin
Vendored

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