12 lines
163 B
Kotlin
Vendored
12 lines
163 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// WITH_RUNTIME
|
|
|
|
@Suppress("x")
|
|
@get:JvmName("foo")
|
|
val vo get() = "O"
|
|
|
|
@Suppress("x")
|
|
@get:JvmName("bar")
|
|
val vk = "K"
|
|
|
|
fun box() = vo + vk |