Annotation rename: target --> @Target

This commit is contained in:
Mikhail Glukhikh
2015-09-07 11:25:53 +03:00
parent 6c903a607c
commit 8f7b29f80a
127 changed files with 228 additions and 228 deletions
@@ -1,6 +1,6 @@
annotation class base
target(AnnotationTarget.EXPRESSION) annotation class special
@Target(AnnotationTarget.EXPRESSION) annotation class special
fun transform(i: Int, tr: (Int) -> Int): Int = <!WRONG_ANNOTATION_TARGET!>@base<!> @special tr(@special i)