12 lines
225 B
Kotlin
Vendored
12 lines
225 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() {}
|
|
} |