Files
kotlin-fork/nj2k/testData/newJ2k/annotations/modifiersToAnnotationsFromPropertyAccessors.kt
T

16 lines
243 B
Kotlin
Vendored

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