Fix FirAnnotationArgumentChecker (String + ... case) #KT-44995 Fixed

This commit is contained in:
Mikhail Glukhikh
2021-02-17 11:13:59 +03:00
parent cd8f597e2f
commit 1a0be3ee40
5 changed files with 26 additions and 2 deletions
@@ -11,3 +11,11 @@ const val cnst = 2
)<!>
)
fun test() {}
const val A = "foo"
const val B = 100
annotation class S(val s: String)
@S(A + B)
fun foo() {}