[FIR2IR] Fix incorrect type of typealias for suspend functional type, ^KT-50997 Fixed

This commit is contained in:
Ivan Kochurkin
2022-01-28 20:01:40 +03:00
committed by teamcity
parent 828c442518
commit 5391ee91af
10 changed files with 57 additions and 3 deletions
@@ -0,0 +1,5 @@
// ISSUE: KT-50997
typealias MySuspendFunction = suspend (String) -> Unit
fun foo(function: MySuspendFunction) {}
fun box() = "OK"