[FIR] Reproduce KT-66046

^KT-66046
This commit is contained in:
Nikolay Lunyak
2024-03-06 12:40:06 +02:00
committed by Space Team
parent 08dc7aeee3
commit daa6e03e3b
9 changed files with 148 additions and 0 deletions
@@ -0,0 +1,22 @@
// ISSUE: KT-66046
abstract class I1 {
abstract var a: Int
protected set
}
interface I2 {
var a: Int
}
abstract class C : I1(), I2
abstract class I3 {
protected abstract fun foo(): Int
}
interface I4 {
fun foo(): Int
}
abstract class B : I3(), I4