mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
13 lines
123 B
Kotlin
Vendored
13 lines
123 B
Kotlin
Vendored
// A
|
|
|
|
class A {
|
|
@Synchronized
|
|
@Strictfp
|
|
fun f() {
|
|
|
|
}
|
|
|
|
@Transient
|
|
@Volatile
|
|
var c: String = ""
|
|
} |