Fix checking repeatablilty of use-site target annotations. KT-26638 fixed

This commit is contained in:
Dmitriy Novozhilov
2019-02-21 15:09:11 +03:00
parent cfda468f13
commit 92bd907983
10 changed files with 91 additions and 6 deletions
@@ -1,6 +1,9 @@
package
@setparam:Ann(x = 20) @setparam:Ann(x = 10) public var a: kotlin.String
@get:Ann(x = 10) @get:Ann(x = 20) public val a: kotlin.String
@set:Ann(x = 10) @set:Ann(x = 20) public var b: kotlin.String
@setparam:Ann(x = 20) @setparam:Ann(x = 10) public var c: kotlin.String
@get:Ann(x = 10) @get:Ann(x = 20) @get:Ann(x = 30) @get:Ann(x = 40) public val d: kotlin.String
public final annotation class Ann : kotlin.Annotation {
public constructor Ann(/*0*/ x: kotlin.Int)