JvmField retention changed to BINARY

This commit is contained in:
Michael Bogdanov
2015-10-11 12:06:43 +03:00
parent 22142ee44d
commit 81f478c6fd
@@ -96,7 +96,7 @@ internal annotation class JvmVersion(public val minimum: Int = 6, public val max
* Instructs the Kotlin compiler not to generate getters/setters for this property and expose it as a field.
*/
@Target(AnnotationTarget.FIELD)
@Retention(AnnotationRetention.SOURCE)
@Retention(AnnotationRetention.BINARY)
@MustBeDocumented
public annotation class JvmField