Fix tests
This commit is contained in:
Vendored
+1
-1
@@ -4,6 +4,6 @@ annotation class Anno
|
||||
|
||||
class Class {
|
||||
companion object {
|
||||
@[Anno] var property: Int = 42
|
||||
@field:Anno var property: Int = 42
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -9,7 +9,7 @@ internal final class Class {
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
test.Anno() internal final var property: kotlin.Int
|
||||
@field:test.Anno() internal final var property: kotlin.Int
|
||||
internal final fun <get-property>(): kotlin.Int
|
||||
internal final fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -8,5 +8,5 @@ annotation class Anno(val t: ElementType)
|
||||
class Class {
|
||||
Anno(ElementType.METHOD) fun foo() {}
|
||||
|
||||
Anno(ElementType.FIELD) var bar = 42
|
||||
@field:Anno(ElementType.FIELD) var bar = 42
|
||||
}
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
|
||||
|
||||
internal final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
test.Anno(t = ElementType.FIELD) internal final var bar: kotlin.Int
|
||||
@field:test.Anno(t = ElementType.FIELD) internal final var bar: kotlin.Int
|
||||
internal final fun <get-bar>(): kotlin.Int
|
||||
internal final fun <set-bar>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
test.Anno(t = ElementType.METHOD) internal final fun foo(): kotlin.Unit
|
||||
|
||||
+1
-1
@@ -3,5 +3,5 @@ package test
|
||||
annotation class Anno
|
||||
|
||||
class Class {
|
||||
@[Anno] var property: Int = 42
|
||||
@field:Anno var property: Int = 42
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
|
||||
|
||||
internal final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
test.Anno() internal final var property: kotlin.Int
|
||||
@field:test.Anno() internal final var property: kotlin.Int
|
||||
internal final fun <get-property>(): kotlin.Int
|
||||
internal final fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user