Annotation parameters now cannot be mutable #KT-12367 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-05-20 14:07:48 +03:00
parent 81bdd6b4bb
commit cffdce908e
7 changed files with 15 additions and 2 deletions
@@ -1,5 +1,5 @@
annotation class Ann(
val a: Int,
var b: Int,
<!VAR_ANNOTATION_PARAMETER!>var<!> b: Int,
<!MISSING_VAL_ON_ANNOTATION_PARAMETER!>c: String<!>
)