14 lines
205 B
Kotlin
Vendored
14 lines
205 B
Kotlin
Vendored
// TARGET_BACKEND: JVM_IR
|
|
// IGNORE_BACKEND_K1: JVM_IR
|
|
|
|
class Base {
|
|
val x: CharSequence
|
|
internal field: String = "OK"
|
|
|
|
val s: String get() = x
|
|
}
|
|
|
|
fun box(): String {
|
|
return Base().s
|
|
}
|