Remove @annotation from test data

This commit is contained in:
Alexey Tsvetkov
2015-10-16 00:05:21 +03:00
parent ae17c06f7a
commit dc27363452
292 changed files with 504 additions and 504 deletions
@@ -19,11 +19,11 @@ public final enum class My : kotlin.Enum<test.My> {
@kotlin.Deprecated(message = "Use 'values' property instead", replaceWith = kotlin.ReplaceWith(expression = "this.values", imports = {})) public final /*synthesized*/ fun values(): kotlin.Array<test.My>
}
@kotlin.annotation.annotation() public final class ann : kotlin.Annotation {
public final annotation class ann : kotlin.Annotation {
public constructor ann(/*0*/ vararg m: test.My /*kotlin.Array<out test.My>*/)
public final val m: kotlin.Array<out test.My>
}
@test.ann(m = {My.ALPHA, My.BETA}) @kotlin.annotation.annotation() public final class annotated : kotlin.Annotation {
@test.ann(m = {My.ALPHA, My.BETA}) public final annotation class annotated : kotlin.Annotation {
public constructor annotated()
}