FIR: fix contract deserialization for assertIs<T>

This commit is contained in:
Mikhail Glukhikh
2021-07-06 13:00:01 +03:00
parent e0c1f50f03
commit c7877cb440
6 changed files with 30 additions and 0 deletions
@@ -0,0 +1,6 @@
import kotlin.test.*
fun foo(arg: Any) {
assertIs<String>(arg, "")
arg.length
}