Regenerate test data containing rendered descriptors

Introduced '@' after each annotation
This commit is contained in:
Denis Zharkov
2015-09-15 19:41:57 +03:00
parent 7ea7e3cc7c
commit 4850fd10f0
718 changed files with 2061 additions and 2061 deletions

View File

@@ -3,7 +3,7 @@ package test
public /*synthesized*/ fun NullInAnnotation(/*0*/ function: () -> kotlin.Unit): test.NullInAnnotation
public interface NullInAnnotation {
test.NullInAnnotation.Ann(a = null, b = {null}) public abstract fun foo(): kotlin.Unit
@test.NullInAnnotation.Ann(a = null, b = {null}) public abstract fun foo(): kotlin.Unit
public final class Ann : kotlin.Annotation {
public constructor Ann(/*0*/ a: kotlin.String, /*1*/ b: kotlin.Array<kotlin.String>)

View File

@@ -1,6 +1,6 @@
package test
public interface TypeAnnotations</*0*/ TT : kotlin.Any!> {
public abstract fun f(/*0*/ p: test.G2<@[test.A()] kotlin.String!, @[test.A()] kotlin.Int!>!): kotlin.Unit
public abstract fun f(/*0*/ p: test.G<@[test.A()] kotlin.String!>!): kotlin.Unit
public abstract fun f(/*0*/ p: test.G2<@test.A() kotlin.String!, @test.A() kotlin.Int!>!): kotlin.Unit
public abstract fun f(/*0*/ p: test.G<@test.A() kotlin.String!>!): kotlin.Unit
}