[FIR] Properly create class scopes while resolving of annotations arguments

This commit is contained in:
Dmitriy Novozhilov
2021-08-04 16:02:22 +03:00
committed by teamcityserver
parent 4c58954967
commit 60195114c1
7 changed files with 67 additions and 5 deletions
@@ -0,0 +1,11 @@
// WITH_STDLIB
import kotlin.reflect.KClass
annotation class Ann(val kClass: KClass<*>)
class A {
@Ann(EmptyList::class)
fun foo() {}
object EmptyList
}