[FIR] Fix handling fake overrides in override visibility check

^KT-65432
This commit is contained in:
Pavel Kunyavskiy
2024-01-31 18:09:20 +01:00
committed by Space Team
parent 61f14374b9
commit 24f8da471f
14 changed files with 1503 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
class A : Java1 {
constructor() /* primary */ {
super/*Java1*/()
/* <init>() */
}
}
open class KotlinClass : ArrayList<Int> {
constructor() /* primary */ {
super/*ArrayList*/<@FlexibleNullability Int?>()
/* <init>() */
}
}