Revert "[FIR] Remove the redundant isFunctionType check"

This reverts commit 1f97c268e1.
This commit is contained in:
Nikolay Krasko
2023-12-01 11:27:39 +01:00
parent 2b6845c032
commit 5e5e5b8b9f
8 changed files with 1 additions and 47 deletions
@@ -1,12 +0,0 @@
FILE: castForFunctionsWithDifferentArities.kt
public final fun test(b: R|kotlin/Boolean|, block1: R|kotlin/Any.() -> kotlin/Unit|, block2: R|(kotlin/Any.(kotlin/Any?) -> kotlin/Unit)?|): R|kotlin/Unit| {
when () {
R|<local>/b| -> {
R|kotlin/requireNotNull|<R|kotlin/Any.() -> kotlin/Unit|>(R|<local>/block1|)
}
else -> {
R|kotlin/requireNotNull|<R|kotlin/Any.(kotlin/Any?) -> kotlin/Unit|>(R|<local>/block2|)
}
}
}