[FIR2IR] Fix handling private setters in anonymous classes
^KT-65290 Fixed
This commit is contained in:
committed by
Space Team
parent
66d8f471d9
commit
caa6918031
@@ -0,0 +1,11 @@
|
||||
// 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
|
||||
}
|
||||
Reference in New Issue
Block a user