mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
17 lines
292 B
Kotlin
Vendored
17 lines
292 B
Kotlin
Vendored
class Example {
|
|
@JvmSynthetic
|
|
val prop: String = "ABC"
|
|
|
|
var prop2 = 5
|
|
@JvmSynthetic public get
|
|
@JvmSynthetic public set
|
|
|
|
@field:JvmSynthetic
|
|
val useSite = 0
|
|
|
|
@get:JvmSynthetic @set:JvmSynthetic
|
|
var useSite2 = 0
|
|
|
|
@JvmSynthetic
|
|
fun job() {}
|
|
} |