[FIR] Create CFG node for ::class calls

This commit is contained in:
Dmitriy Novozhilov
2021-07-22 14:14:54 +03:00
committed by teamcityserver
parent c5ce52eef5
commit 9b00776dba
14 changed files with 119 additions and 0 deletions
@@ -0,0 +1,7 @@
// WITH_STDLIB
// DUMP_CFG
import kotlin.reflect.KClass
fun test(x: String): KClass<*> {
return x.let { it::class }
}