Load static final fields of appropriate types from Java as const

This commit is contained in:
Denis Zharkov
2015-09-21 17:32:17 +03:00
parent 98dd08109d
commit 8d13f08271
14 changed files with 94 additions and 23 deletions
@@ -11,5 +11,5 @@ public open class AnnotatedField {
}
// Static members
@test.AnnotatedField.Anno(value = "static") public final val x: kotlin.Int = 0
@test.AnnotatedField.Anno(value = "static") public const final val x: kotlin.Int = 0
}
@@ -13,5 +13,5 @@ public interface StringConstantInParam {
}
// Static members
public final val HEL: kotlin.String = "hel"
public const final val HEL: kotlin.String = "hel"
}