Minor. Render annotations on type parameters

This commit is contained in:
Denis Zharkov
2016-01-19 14:03:33 +03:00
parent 70dc5b5403
commit 4cf1393e81
9 changed files with 22 additions and 19 deletions
@@ -6,5 +6,5 @@ package test
public final class SimpleTypeParameterAnnotation {
/*primary*/ public constructor SimpleTypeParameterAnnotation()
public final fun </*0*/ T> foo(/*0*/ x: T): kotlin.Unit
public final fun </*0*/ @test.A() T> foo(/*0*/ x: T): kotlin.Unit
}
@@ -10,5 +10,5 @@ package test
public final class SimpleTypeParameterAnnotation {
/*primary*/ public constructor SimpleTypeParameterAnnotation()
public final fun </*0*/ T> foo(/*0*/ x: T): kotlin.Unit
public final fun </*0*/ @test.A(x = "a", y = 1.0.toDouble()) T> foo(/*0*/ x: T): kotlin.Unit
}