[FIR] Reproduce KT-66046
^KT-66046
This commit is contained in:
committed by
Space Team
parent
08dc7aeee3
commit
daa6e03e3b
+22
@@ -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
|
||||
Reference in New Issue
Block a user