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,10 @@
enum class Color {
R,
G,
B
}
annotation class Annotation(val color : Color)
<expr>@Annotation(Color.R)</expr>
class C