[IRFakeOverrides] Fix accessors visibilities

^KT-65801
This commit is contained in:
Pavel Kunyavskiy
2024-02-21 12:26:00 +01:00
committed by Space Team
parent acee8da283
commit c991535756
23 changed files with 1413 additions and 5 deletions
@@ -0,0 +1,42 @@
class IndirectChild : JavaChild {
constructor() /* primary */ {
super/*JavaChild*/()
/* <init>() */
}
}
open class KotlinBase {
var a: Int
field = 1
get
set
var b: Int
field = 2
get
protected set
var c: Int
field = 3
get
private set
var d: Int
field = 4
get
internal set
open var e: Int
field = 5
open get
open set
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}