Fix JvmStatic applicability diagnostics test after COMPANION_OBJECT became distinct KotlinTarget

This commit is contained in:
Ilya Gorbunov
2015-11-21 00:43:35 +03:00
parent f20f15ec46
commit 5b02a59cb7
+1 -1
View File
@@ -2,7 +2,7 @@ import kotlin.jvm.JvmStatic
<error descr="[WRONG_ANNOTATION_TARGET] This annotation is not applicable to target 'class'">@JvmStatic</error>
class A {
<error descr="[WRONG_ANNOTATION_TARGET] This annotation is not applicable to target 'object'">@JvmStatic</error>
<error descr="[WRONG_ANNOTATION_TARGET] This annotation is not applicable to target 'companion object'">@JvmStatic</error>
companion object {
@JvmStatic fun a1() {