43ef113b7a
#KT-20314 Fixed
17 lines
244 B
Kotlin
Vendored
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() {
|
|
}
|
|
} |