mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
13 lines
138 B
Kotlin
Vendored
13 lines
138 B
Kotlin
Vendored
// A
|
|
// WITH_RUNTIME
|
|
class A {
|
|
@Synchronized
|
|
@Strictfp
|
|
fun f() {
|
|
|
|
}
|
|
|
|
@Transient
|
|
@Volatile
|
|
var c: String = ""
|
|
} |