Files
kotlin-fork/compiler/testData/codegen/box/fakeOverride/fakeOverrideOfPrivateSetter.kt
T
2024-02-02 16:07:35 +00:00

11 lines
232 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-63984
abstract class TextRendererActions1 {
var fontSize: String = "OK"; private set
}
fun box() : String {
return object : TextRendererActions1() {
val glyph = this.fontSize
}.glyph
}