Files
kotlin-fork/compiler/testData/asJava/ultraLightClasses/jvmSyntheticForAccessors.kt
T
Igor Yakovlev af1e3fb10d UL properties supports JvmSynthetic annotation for get: and set: modifiers
(+small refactoring)
Fixed #KT-34973
2020-03-16 18:42:17 +03:00

9 lines
86 B
Kotlin
Vendored

class X {
@get:JvmSynthetic
var v = 1
@set:JvmSynthetic
var w = 1
}