[LL FIR] add more lazy resolve tests on status phase

^KT-56551
This commit is contained in:
Dmitrii Gridin
2023-05-11 17:35:40 +02:00
parent 0b09be73c6
commit 25506d3be6
42 changed files with 14850 additions and 0 deletions
@@ -0,0 +1,11 @@
interface Foo1 : Foo2 {
fun f<caret>oo()
}
interface Foo2 : Foo3 {
override fun foo()
}
interface Foo3 : Foo1 {
override fun foo()
}