[LL FIR] add test which checks reference shortening for the whole file

^KT-57966
This commit is contained in:
Ilya Kirillov
2023-04-26 18:33:37 +02:00
committed by Space Team
parent bb7037aa8e
commit e9f75b1350
8 changed files with 188 additions and 20 deletions
@@ -0,0 +1,17 @@
class A {
abstract class B {
abstract val b: A.B
}
}
class C {
abstract class D {
companion object {
fun foo() {}
}
init {
C.D.Companion.foo()
}
}
}
@@ -0,0 +1,2 @@
[type] A.B
[qualifier] C.D.Companion.foo()