Get rid of deprecated annotations in testData
This commit is contained in:
@@ -4,6 +4,6 @@ package a
|
||||
annotation class Ann
|
||||
|
||||
interface Tr {
|
||||
Ann
|
||||
@Ann
|
||||
fun foo() {}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
import constants.*
|
||||
|
||||
AnnotationClass("$b $s $i $l $f $d $bb $c $str")
|
||||
@AnnotationClass("$b $s $i $l $f $d $bb $c $str")
|
||||
class DummyClass()
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
|
||||
+2
-2
@@ -1,9 +1,9 @@
|
||||
import a.*
|
||||
|
||||
Ann(i, s, f, d, l, b, bool, c, str)
|
||||
@Ann(i, s, f, d, l, b, bool, c, str)
|
||||
class MyClass1
|
||||
|
||||
Ann(i2, s2, f2, d2, l2, b2, bool2, c2, str2)
|
||||
@Ann(i2, s2, f2, d2, l2, b2, bool2, c2, str2)
|
||||
class MyClass2
|
||||
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
|
||||
@@ -4,7 +4,7 @@ import kotlin.jvm.*
|
||||
|
||||
public object TestObject {
|
||||
|
||||
@jvmStatic
|
||||
@JvmStatic
|
||||
public val test: String = "test"
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user