Files
kotlin-fork/nj2k/testData/newJ2k/annotations/modifiersToAnnotationsFromPropertyAccessors.kt
T
2019-04-03 11:24:19 +03:00

17 lines
244 B
Kotlin
Vendored

class WithModifiersOnAccessors {
@get:Synchronized
@set:Synchronized
var sync = 0
@get:Strictfp
val strict = 0.0
@Synchronized
private fun methSync() {
}
@Strictfp
protected fun methStrict() {
}
}