[FIR2IR] Expand typealias in callable reference receiver generation

^KT-56750 Fixed
This commit is contained in:
Kirill Rakhman
2023-03-01 10:54:04 +01:00
committed by Space Team
parent 3ec032212c
commit d00513599b
14 changed files with 80 additions and 2 deletions
@@ -0,0 +1,7 @@
object Thing {
fun something(thing: String) = thing
}
typealias ThingAlias = Thing
fun box() = "OK".run(ThingAlias::something)