Exception fix: more accurate type annotation parsing #EA-69124 Fixed

This commit is contained in:
Mikhail Glukhikh
2015-06-08 13:32:08 +03:00
parent 804bf3ad22
commit a792b29a78
7 changed files with 32 additions and 1 deletions
@@ -0,0 +1,2 @@
// Class constructor parameter type CAN be recursively annotated
annotation class RecursivelyAnnotated(val x: @RecursivelyAnnotated(1) Int)
@@ -0,0 +1,9 @@
package
internal final annotation class RecursivelyAnnotated : kotlin.Annotation {
public constructor RecursivelyAnnotated(/*0*/ x: @[RecursivelyAnnotated(x = IntegerValueType(1): IntegerValueType(1))] kotlin.Int)
internal final val x: @[RecursivelyAnnotated(x = IntegerValueType(1): IntegerValueType(1))] kotlin.Int
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}