8 lines
212 B
Kotlin
Vendored
8 lines
212 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
|
|
} |