Get rid of deprecated annotations in testData

This commit is contained in:
Denis Zharkov
2015-09-14 17:40:41 +03:00
parent eebe66e041
commit bae3320d52
257 changed files with 433 additions and 463 deletions
@@ -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>) {
@@ -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"
}