caa6918031
^KT-65290 Fixed
11 lines
232 B
Kotlin
Vendored
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
|
|
} |