FIR IDE: test resolution of various annotation values

This commit is contained in:
Jinseong Jeon
2021-09-15 16:05:40 -07:00
committed by Ilya Kirillov
parent 150f066254
commit 744961bd00
18 changed files with 134 additions and 0 deletions
@@ -0,0 +1,6 @@
annotation class Annotation(vararg val strings: String)
annotation class AnnotationInner(val value: Annotation)
@AnnotationInner(<expr>Annotation(strings = arrayOf("v1", "v2"))</expr>)
class C