Kapt: Annotations on enum constants are not kept on the generated stub (KT-21433)

This commit is contained in:
Yan Zhulanow
2017-11-27 15:02:29 +09:00
committed by Yan Zhulanow
parent c6f922fb64
commit 4c96453a4b
7 changed files with 82 additions and 8 deletions
@@ -28,4 +28,8 @@ class TestAnno2 {
@get:Anno3("getter") @set:Anno3("setter") @property:Anno3("property") @field:Anno3("field") @setparam:Anno3("setparam")
var b: String = "property initializer"
}
enum class Enum1 {
BLACK, @Anno1 WHITE
}