Adjust testData: get rid of obsolete annotations

This commit is contained in:
Denis Zharkov
2015-06-09 20:30:52 +03:00
parent 053dcf3abf
commit c9f79c2d05
193 changed files with 322 additions and 322 deletions
+3 -3
View File
@@ -3,8 +3,8 @@ package rendererTest
annotation class TheAnnotation
annotation class AnotherAnnotation
[TheAnnotation]
public open class TheClass<out T : Int, X> [AnotherAnnotation] () {
@TheAnnotation
public open class TheClass<out T : Int, X> @AnotherAnnotation constructor() {
private val privateVal: Int = 5
val shouldBeFinal: Int = 5
@@ -14,7 +14,7 @@ public open class TheClass<out T : Int, X> [AnotherAnnotation] () {
protected abstract fun foo() {}
[TheAnnotation] private constructor()
@TheAnnotation private constructor()
private class Inner {}
}