Files
kotlin-fork/j2k/testData/fileOrElement/annotations/modifiersToAnnotationsFromPropertyAccessors.kt
T
2017-12-22 10:35:22 +01:00

17 lines
244 B
Kotlin
Vendored

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