[AA LC] Fix annotations on fields for enum entries

This commit is contained in:
Dmitriy Novozhilov
2022-08-03 16:06:35 +03:00
parent a88fdd5eb7
commit 8e80c5830e
4 changed files with 32 additions and 15 deletions
+3 -1
View File
@@ -2,8 +2,10 @@
import java.util.function.*
annotation class Some
enum class Direction {
NORTH, SOUTH, WEST, EAST
@Some NORTH, SOUTH, WEST, EAST
}
enum class Color(val rgb: Int = 5) {