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
+1 -1
View File
@@ -1,4 +1,4 @@
fun foo() {
[Deprecated] fun innerFoo() {
@[Deprecated] fun innerFoo() {
}
}
+1 -1
View File
@@ -1 +1 @@
class A [Deprecated] private [Override Deprecated] ()
class A @[Deprecated] private @[Override Deprecated] ()
+2 -2
View File
@@ -1,5 +1,5 @@
class C {
[Ann]
@[Ann]
}
[Ann]
@[Ann]
+1 -1
View File
@@ -1,2 +1,2 @@
[Deprecated Override] fun foo() {
@[Deprecated Override] fun foo() {
}
@@ -1 +1 @@
val c = [x] val a
val c = @[x] val a
+1 -1
View File
@@ -4,4 +4,4 @@ annotation class b(val e: E)
enum class E { E1 E2 }
fun types(param: [a] [b(E.E1)] DoubleRange): [a] [b(E.E2)] Unit {}
fun types(param: @[a] @[b(E.E1)] DoubleRange): @[a] @[b(E.E2)] Unit {}