[AA] Fix conversion of annotation values

This commit is contained in:
Pavel Mikhailovskii
2023-02-22 13:55:50 +00:00
committed by Space Team
parent 40a4845541
commit 7700484a16
10 changed files with 65 additions and 9 deletions
@@ -0,0 +1,6 @@
// WITH_STDLIB
annotation class A(vararg val xs: ULong)
@A(1234u, 18446744073709551615u)
fun fo<caret>o(): Int = 42
@@ -0,0 +1,5 @@
KtDeclaration: KtNamedFunction foo
annotations: [
A(xs = [1234uL, 18446744073709551615uL])
psi: KtAnnotationEntry
]