[FIR] Ensure the case from KT-63741 works

^KT-63741
This commit is contained in:
Nikolay Lunyak
2023-11-27 13:37:56 +02:00
committed by Space Team
parent 2ad0be7bdc
commit 249886fb13
6 changed files with 40 additions and 0 deletions
@@ -0,0 +1,10 @@
// FIR_IDENTICAL
public abstract class A {
protected abstract fun bar(): String
}
public interface B {
public fun bar(): String
}
public abstract class C: A(), B